Really honour NO_PYTHON
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>
Sun, 19 Feb 2006 20:13:48 +0000 (21:13 +0100)
committerJunio C Hamano <junkio@cox.net>
Mon, 20 Feb 2006 00:55:38 +0000 (16:55 -0800)
Do not even test for subprocess (trying to execute python).

Signed-off-by: Johannes E. Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile

index 080651e..d5a95c4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -291,8 +291,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