From f60a22bd94d8d14ee3a0a9c938e793ba79c240f4 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 11 Jun 2004 02:41:27 +0000 Subject: [PATCH] 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 --- wxPython/b.win32 | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/wxPython/b.win32 b/wxPython/b.win32 index 2a3314b115..80fbae2007 100644 --- a/wxPython/b.win32 +++ b/wxPython/b.win32 @@ -5,14 +5,17 @@ FLAGS="USE_SWIG=1 SWIG=e:/projects/SWIG-cvs/swig.exe" # Use non-default python? -if [[ "$1" = "15" || "$1" = "20" || "$1" = "21" || "$1" = "22" || "$1" = "23" ]]; then - VER=$1 - PYTHON=$TOOLS/python$1/python.exe - shift -else - echo You must specify the Python version as first parameter. - exit -1 -fi +case $1 in + 21 | 2.1) VER=21 ;; + 22 | 2.2) VER=22 ;; + 23 | 2.3) VER=23 ;; + + *) echo You must specify the Python version as first parameter. + exit -1 +esac + +PYTHON=$TOOLS/python$VER/python.exe +shift SETUP="$PYTHON -u setup.py" $PYTHON -c "import sys;print '\n', sys.version, '\n'" -- 2.47.2