From: Jack Jansen Date: Wed, 7 May 2003 08:58:11 +0000 (+0000) Subject: Merged 1.2.2.1 fixes: X-Git-Tag: v2.3c1~820 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a6872b86a138ea166836cdf8c12658ff66a0ff5b;p=python Merged 1.2.2.1 fixes: - Don't generate README, but ask the user to provide it. - Create destination dir, if needed. - Updated for 2.3b1. --- diff --git a/Mac/OSX/Dist/build b/Mac/OSX/Dist/build index a8976facec..1560ee128a 100755 --- a/Mac/OSX/Dist/build +++ b/Mac/OSX/Dist/build @@ -5,9 +5,9 @@ # TODO: Parameterize the versions, builddirs, etc... # Script configs -PYVERSION=2.3a2 +PYVERSION=2.3b1 PYVER=2.3 -BUILDNUM=3 +BUILDNUM=1 DOCLEANUP=no PROGDIR="`dirname \"$0\"`" @@ -40,6 +40,14 @@ mkdir -p $DMGDIR/root # Configure and build Python pushd $BUILDROOT +# Ask the user whether s/he has edited Welcome.txt +read -p "Have you updated $RESOURCEDIR/Welcome.txt (Y/n)? " welcome + +if [ "$welcome" = "n" -o "$welcome" = "N" ]; then + echo "Please do so and retry" + exit +fi + # Check if we should build and install the docs, but only if it # doesn't appear to be done already. TODO: fix this path to be version independent if [ ! -e "build/temp.darwin-6.3-Power Macintosh-2.3/build-html/build-html idx" ]; then @@ -85,16 +93,6 @@ rm -rf $INSTALLROOT/usr python $PYTHONSRC/Mac/scripts/zappycfiles.py $INSTALLROOT/Library/Frameworks/Python.framework/Versions/$PYVER/lib/python$PYVER python $PYTHONSRC/Mac/scripts/zappycfiles.py $INSTALLROOT/Library/Frameworks/Python.framework/Versions/$PYVER/Mac/Tools -# Make the welcome message -cat > $RESOURCEDIR/Welcome.txt <