octave: rename executable Octave to octave

This commit is contained in:
Denis Davydov 2016-06-28 11:25:45 +02:00
parent 0faa6dd753
commit c4c167c1ca
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ class OctaveSplines(Package):
extends('octave@3.6.0:')
def install(self, spec, prefix):
Octave('--quiet',
octave('--quiet',
'--norc',
'--built-in-docstrings-file=/dev/null',
'--texi-macros-file=/dev/null',

View File

@ -223,7 +223,7 @@ def setup_dependent_package(self, module, ext_spec):
"""Called before Octave modules' install() methods.
In most cases, extensions will only need to have one line:
Octave('--eval', 'pkg install %s' % self.stage.archive_file)
octave('--eval', 'pkg install %s' % self.stage.archive_file)
"""
# Octave extension builds can have a global Octave executable function
module.Octave = Executable(join_path(self.spec.prefix.bin, 'octave'))
module.octave = Executable(join_path(self.spec.prefix.bin, 'octave'))