aboutsummaryrefslogtreecommitdiffstats
path: root/biology
diff options
context:
space:
mode:
authorperky <perky@FreeBSD.org>2003-08-02 06:04:57 +0800
committerperky <perky@FreeBSD.org>2003-08-02 06:04:57 +0800
commit43ad2b2be94664a694197ac789220cf5a1416d63 (patch)
treeb0b27a98e61a1b42796c104b744ed8aa729a0870 /biology
parent2cdb3a379583e3b3056dbe0666d0518cc8d4b867 (diff)
downloadfreebsd-ports-gnome-43ad2b2be94664a694197ac789220cf5a1416d63.tar.gz
freebsd-ports-gnome-43ad2b2be94664a694197ac789220cf5a1416d63.tar.zst
freebsd-ports-gnome-43ad2b2be94664a694197ac789220cf5a1416d63.zip
Fix python version detection routines to cope with python 2.3's
boolean representation.
Diffstat (limited to 'biology')
-rw-r--r--biology/py-biopython/pkg-req2
1 files changed, 1 insertions, 1 deletions
diff --git a/biology/py-biopython/pkg-req b/biology/py-biopython/pkg-req
index 481af4e9a7ad..1a2bc48824e3 100644
--- a/biology/py-biopython/pkg-req
+++ b/biology/py-biopython/pkg-req
@@ -4,7 +4,7 @@ PATH=$PATH:/usr/local/bin
if [ "x$1" = "xINSTALL" -o "x$2" = "xINSTALL" ]; then
PYTHON_GT=`python -c 'import string, sys; \
- print string.split(sys.version)[0] >= "2.0"'`
+ print string.split(sys.version)[0] >= "2.0" and 1'`
if [ "x${PYTHON_GT}" = "x1" ]; then
exit 0
else