From 9d50dea1c2f884835b606ccaa1444e5de96926cb Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Fri, 5 Nov 2010 16:09:49 -0700 Subject: uhd: dont check for python interp if PYTHON_EXECUTABLE specified --- host/config/Python.cmake | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'host') 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}") -- cgit v1.2.3