diff options
Diffstat (limited to 'databases/zodb/pkg-req')
-rw-r--r-- | databases/zodb/pkg-req | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/databases/zodb/pkg-req b/databases/zodb/pkg-req deleted file mode 100644 index d5d99df207bb..000000000000 --- a/databases/zodb/pkg-req +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -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.1" and 1'` - if [ "x${PYTHON_GT}" = "x1" ]; then - exit 0 - else - echo "-----------------------------------------------------------" - echo "ZODB requires Python version 2.1 or greater -" - echo " please update your Python installation before proceeding." - echo "-----------------------------------------------------------" - exit 1 - fi -fi |