echo "-=-=-=- Hello from $HOSTNAME -=-=-=-"
if [ $# -lt 6 ]; then
- echo "Usage: $0 WXDIR DESTDIR SKIPCLEAN VERSION KIND PYVER..."
+ echo "Usage: $0 WXDIR DESTDIR SKIPCLEAN VERSION KIND PYVER"
exit 1
fi
SKIPCLEAN=$3
VERSION=$4
KIND=$5
-shift;shift;shift;shift;shift
-PYVER=$@
+PYVER=$6
#export PATH=/sw/bin:/usr/local/bin:$PATH
export TARBALLDIR=$DESTDIR
mkdir -p dist
if [ $KIND = panther ]; then
- distrib/mac/wxPythonOSX/build $KIND inplace unicode
+ distrib/mac/wxPythonOSX/build $PYVER $KIND inplace unicode
fi
-distrib/mac/wxPythonOSX/build $KIND inplace
+distrib/mac/wxPythonOSX/build $PYVER $KIND inplace
echo "Copying installers to $DESTDIR..."