blob: 3e7ca82832a829eb37d5c4d015aec2d5ebe7c2d2 [file] [log] [blame]
#!/bin/sh
# Required version of Python
# Python 2.0 = 0x2000000
# Python 2.2 = 0x2020000
VERSION=${1:-0x2020000}
for pypath in "$PYTHON" "$PYTHON2" python python2; do
if [ "x$pypath" != "x" ]; then
DETECT_PYTHON="import sys;sys.exit((sys.hexversion < $VERSION) and 1 or 0)"
if "$pypath" -c "$DETECT_PYTHON" >/dev/null 2>/dev/null; then
echo $pypath
exit 0
fi
fi
done
exit 1