diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 2000-09-06 12:18:18 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 2000-09-06 12:18:18 +0000 |
commit | a8a1754e23ef584b6c74bf5676cae6788b434647 (patch) | |
tree | 48e2339294583b62bf49db36bf3678536ac108b5 | |
parent | 56c6e473560d429ee78ad437629ead36bdbe29a8 (diff) | |
download | freebsd-ports-a8a1754e23ef584b6c74bf5676cae6788b434647.zip |
Fix `python: command not found' when python doesn't exist.
Noticed by: steve
-rw-r--r-- | math/numpy/Makefile | 4 | ||||
-rw-r--r-- | math/py-numeric/Makefile | 4 | ||||
-rw-r--r-- | math/py-numeric17/Makefile | 4 | ||||
-rw-r--r-- | misc/py-distutils/Makefile | 4 |
4 files changed, 9 insertions, 7 deletions
diff --git a/math/numpy/Makefile b/math/numpy/Makefile index 142d5fe10eb6..b1ccbf97bb8c 100644 --- a/math/numpy/Makefile +++ b/math/numpy/Makefile @@ -26,8 +26,8 @@ PLIST_SUB= PYVERSION="python${PYVERSION}" DOCDIR= ${PREFIX}/share/doc/py-numeric EXAMPLEDIR= ${PREFIX}/share/examples/py-numeric -PYVERSION!= python -c 'import string, sys; \ - print string.split(sys.version)[0][:3]' \ +PYVERSION!= (python -c 'import string, sys; \ + print string.split(sys.version)[0][:3]') 2> /dev/null \ || echo "1.5" .if ${PYVERSION} == "2.0" diff --git a/math/py-numeric/Makefile b/math/py-numeric/Makefile index 142d5fe10eb6..b1ccbf97bb8c 100644 --- a/math/py-numeric/Makefile +++ b/math/py-numeric/Makefile @@ -26,8 +26,8 @@ PLIST_SUB= PYVERSION="python${PYVERSION}" DOCDIR= ${PREFIX}/share/doc/py-numeric EXAMPLEDIR= ${PREFIX}/share/examples/py-numeric -PYVERSION!= python -c 'import string, sys; \ - print string.split(sys.version)[0][:3]' \ +PYVERSION!= (python -c 'import string, sys; \ + print string.split(sys.version)[0][:3]') 2> /dev/null \ || echo "1.5" .if ${PYVERSION} == "2.0" diff --git a/math/py-numeric17/Makefile b/math/py-numeric17/Makefile index 142d5fe10eb6..b1ccbf97bb8c 100644 --- a/math/py-numeric17/Makefile +++ b/math/py-numeric17/Makefile @@ -26,8 +26,8 @@ PLIST_SUB= PYVERSION="python${PYVERSION}" DOCDIR= ${PREFIX}/share/doc/py-numeric EXAMPLEDIR= ${PREFIX}/share/examples/py-numeric -PYVERSION!= python -c 'import string, sys; \ - print string.split(sys.version)[0][:3]' \ +PYVERSION!= (python -c 'import string, sys; \ + print string.split(sys.version)[0][:3]') 2> /dev/null \ || echo "1.5" .if ${PYVERSION} == "2.0" diff --git a/misc/py-distutils/Makefile b/misc/py-distutils/Makefile index 35cf8746e43c..c72770de15dc 100644 --- a/misc/py-distutils/Makefile +++ b/misc/py-distutils/Makefile @@ -19,7 +19,9 @@ RUN_DEPENDS= python:${PORTSDIR}/lang/python PLIST_SUB= PYVERSION="python${PYVERSION}" -PYVERSION!= python -c 'import string, sys; print string.split(sys.version)[0][:3]' || echo "1.5" +PYVERSION!= (python -c 'import string, sys; \ + print string.split(sys.version)[0][:3]') 2> /dev/null \ + || echo "1.5" do-build: @(cd ${WRKSRC}; python setup.py build) |