Do not even test for subprocess (trying to execute python). Signed-off-by: Johannes E. Schindelin <Johannes.Schindelin@gmx.de> --- In my setup, gmake output would not say "/usr/bin/python: not found", but instead "08;"... :-) Makefile | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) 9fe05fa9b21ed71ccfde30aa0d87ed031b923d40 diff --git a/Makefile b/Makefile index 58291f3..a2cb70c 100644 --- a/Makefile +++ b/Makefile @@ -300,8 +300,10 @@ endif ifdef WITH_OWN_SUBPROCESS_PY PYMODULES += compat/subprocess.py else - ifneq ($(shell $(PYTHON_PATH) -c 'import subprocess;print"OK"' 2>/dev/null),OK) - PYMODULES += compat/subprocess.py + ifeq ($(NO_PYTHON),) + ifneq ($(shell $(PYTHON_PATH) -c 'import subprocess;print"OK"' 2>/dev/null),OK) + PYMODULES += compat/subprocess.py + endif endif endif -- 1.2.1.gb7c4-dirty - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Mon Feb 20 07:14:22 2006
This archive was generated by hypermail 2.1.8 : 2006-02-20 07:14:33 EST