diff options
author | perky <perky@FreeBSD.org> | 2003-08-01 22:04:57 +0000 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2003-08-01 22:04:57 +0000 |
commit | 43ad2b2be94664a694197ac789220cf5a1416d63 (patch) | |
tree | b0b27a98e61a1b42796c104b744ed8aa729a0870 /textproc/py-martel | |
parent | 2cdb3a379583e3b3056dbe0666d0518cc8d4b867 (diff) | |
download | FreeBSD-ports-43ad2b2be94664a694197ac789220cf5a1416d63.zip FreeBSD-ports-43ad2b2be94664a694197ac789220cf5a1416d63.tar.gz |
Fix python version detection routines to cope with python 2.3's
boolean representation.
Diffstat (limited to 'textproc/py-martel')
-rw-r--r-- | textproc/py-martel/pkg-req | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/py-martel/pkg-req b/textproc/py-martel/pkg-req index d57b714..5fc28f0 100644 --- a/textproc/py-martel/pkg-req +++ b/textproc/py-martel/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 |