diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-11-22 09:46:05 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-11-22 09:46:05 +0100 |
commit | a71a219ae5e0faded0c6161e17d8e17d39b01883 (patch) | |
tree | 0ed856bf4d05584a6843c899ca07476e71d7cf03 | |
parent | bb01a88b5176c13c6881489887ec789dd10849a0 (diff) | |
download | astra-a71a219ae5e0faded0c6161e17d8e17d39b01883.tar.gz astra-a71a219ae5e0faded0c6161e17d8e17d39b01883.tar.bz2 astra-a71a219ae5e0faded0c6161e17d8e17d39b01883.tar.xz astra-a71a219ae5e0faded0c6161e17d8e17d39b01883.zip |
Disable octave interface by default
-rw-r--r-- | build/linux/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/linux/configure.ac b/build/linux/configure.ac index 26fa215..785b698 100644 --- a/build/linux/configure.ac +++ b/build/linux/configure.ac @@ -179,8 +179,8 @@ AC_SUBST(HAVEMATLAB) # octave -AC_ARG_ENABLE(octave, [[ --disable-octave disable Octave support]]) -if test x"$enable_octave" != xno; then +AC_ARG_ENABLE(octave, [[ --enable-octave enable Octave support]]) +if test x"$enable_octave" = xyes; then AC_PATH_PROG([HAVEOCTAVE], [octave-config], [no], [$PATH]) AC_MSG_CHECKING([for octave]) if test x"HAVEOCTAVE" != xno -a $HAVEMATLAB = yes; then |