diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-01-19 17:06:57 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-01-20 13:58:44 +0100 |
commit | 2d2be13aa9dcfc77afed1dbe52c78e5dce5a04fa (patch) | |
tree | 1a881314312a35341ec365d2bfe8caac47bd67ca /build | |
parent | 61d95e4d4cabcc1da959ccf68588895862ec64c5 (diff) | |
download | astra-2d2be13aa9dcfc77afed1dbe52c78e5dce5a04fa.tar.gz astra-2d2be13aa9dcfc77afed1dbe52c78e5dce5a04fa.tar.bz2 astra-2d2be13aa9dcfc77afed1dbe52c78e5dce5a04fa.tar.xz astra-2d2be13aa9dcfc77afed1dbe52c78e5dce5a04fa.zip |
Fail when python six module is not found
Diffstat (limited to 'build')
-rw-r--r-- | build/linux/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/linux/configure.ac b/build/linux/configure.ac index 684a4c5..354bccc 100644 --- a/build/linux/configure.ac +++ b/build/linux/configure.ac @@ -213,7 +213,7 @@ assert(LooseVersion(Cython.__version__)>=LooseVersion("0.13")) fi AC_MSG_RESULT(yes) AC_MSG_CHECKING(for six module) - ASTRA_TRY_PYTHON([import six]) + ASTRA_TRY_PYTHON([import six],,HAVEPYTHON=no) if test x$HAVEPYTHON = xno; then AC_MSG_RESULT(no) AC_MSG_ERROR(You need the six module to use the ASTRA toolbox in Python) |