diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rwxr-xr-x | acprep | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 70613991..9d0ea97d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,6 +45,8 @@ if(USE_PYTHON) set(HAVE_BOOST_PYTHON 0) message("Could not find a Python library to use with Boost.Python") endif() +else() + set(HAVE_BOOST_PYTHON 0) endif() set(Boost_USE_MULTITHREADED OFF) @@ -854,7 +854,8 @@ class PrepareBuild(CommandLineApp): def phase_update(self, *args): self.log.info('Executing phase: update') self.phase_pull() - self.phase_check(*args) + #self.phase_check(*args) + self.phase_make(*args) ######################################################################### # Build directory cleaning phases # |