Skip to content
Snippets Groups Projects
Commit c4c167c1 authored by Denis Davydov's avatar Denis Davydov
Browse files

octave: rename executable Octave to octave

parent 0faa6dd7
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ class OctaveSplines(Package): ...@@ -36,7 +36,7 @@ class OctaveSplines(Package):
extends('octave@3.6.0:') extends('octave@3.6.0:')
def install(self, spec, prefix): def install(self, spec, prefix):
Octave('--quiet', octave('--quiet',
'--norc', '--norc',
'--built-in-docstrings-file=/dev/null', '--built-in-docstrings-file=/dev/null',
'--texi-macros-file=/dev/null', '--texi-macros-file=/dev/null',
......
...@@ -223,7 +223,7 @@ def setup_dependent_package(self, module, ext_spec): ...@@ -223,7 +223,7 @@ def setup_dependent_package(self, module, ext_spec):
"""Called before Octave modules' install() methods. """Called before Octave modules' install() methods.
In most cases, extensions will only need to have one line: 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 # 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'))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment