diff options
| -rw-r--r-- | host/config/Python.cmake | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/host/config/Python.cmake b/host/config/Python.cmake index a5080fc40..95cdb4479 100644 --- a/host/config/Python.cmake +++ b/host/config/Python.cmake @@ -18,11 +18,13 @@  ########################################################################  # Setup Python  ######################################################################## -INCLUDE(FindPythonInterp) +IF(NOT DEFINED PYTHON_EXECUTABLE) +    INCLUDE(FindPythonInterp) -IF(NOT PYTHONINTERP_FOUND) -    MESSAGE(FATAL_ERROR "Error: Python interpretor required by the build system.") -ENDIF(NOT PYTHONINTERP_FOUND) +    IF(NOT PYTHONINTERP_FOUND) +        MESSAGE(FATAL_ERROR "Error: Python interpretor required by the build system.") +    ENDIF(NOT PYTHONINTERP_FOUND) +ENDIF(NOT DEFINED PYTHON_EXECUTABLE)  MACRO(PYTHON_CHECK_MODULE desc mod cmd have)      MESSAGE(STATUS "Python checking for ${desc}") | 
