diff options
author | perky <perky@FreeBSD.org> | 2003-08-02 06:04:57 +0800 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2003-08-02 06:04:57 +0800 |
commit | 43ad2b2be94664a694197ac789220cf5a1416d63 (patch) | |
tree | b0b27a98e61a1b42796c104b744ed8aa729a0870 /www/quixote | |
parent | 2cdb3a379583e3b3056dbe0666d0518cc8d4b867 (diff) | |
download | freebsd-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 'www/quixote')
-rw-r--r-- | www/quixote/pkg-req | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/quixote/pkg-req b/www/quixote/pkg-req index f714eed3b2b3..908302bf927c 100644 --- a/www/quixote/pkg-req +++ b/www/quixote/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 |