Do not even test for subprocess (trying to execute python).
Signed-off-by: Johannes E. Schindelin <redacted>
---
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