Accept both XY and X.Y version numbers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27742 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-06-11 02:41:27 +00:00
parent 11ccd01223
commit f60a22bd94

View File

@@ -5,14 +5,17 @@
FLAGS="USE_SWIG=1 SWIG=e:/projects/SWIG-cvs/swig.exe" FLAGS="USE_SWIG=1 SWIG=e:/projects/SWIG-cvs/swig.exe"
# Use non-default python? # Use non-default python?
if [[ "$1" = "15" || "$1" = "20" || "$1" = "21" || "$1" = "22" || "$1" = "23" ]]; then case $1 in
VER=$1 21 | 2.1) VER=21 ;;
PYTHON=$TOOLS/python$1/python.exe 22 | 2.2) VER=22 ;;
shift 23 | 2.3) VER=23 ;;
else
echo You must specify the Python version as first parameter. *) echo You must specify the Python version as first parameter.
exit -1 exit -1
fi esac
PYTHON=$TOOLS/python$VER/python.exe
shift
SETUP="$PYTHON -u setup.py" SETUP="$PYTHON -u setup.py"
$PYTHON -c "import sys;print '\n', sys.version, '\n'" $PYTHON -c "import sys;print '\n', sys.version, '\n'"