From: Neal Norwitz Date: Wed, 26 Jul 2006 04:00:18 +0000 (+0000) Subject: Hmm, only python2.x is installed, not plain python. Did that change recently? X-Git-Tag: v2.5b3~159 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9815f8b25238e22fc14f8305b0bb53711bbb3de6;p=python Hmm, only python2.x is installed, not plain python. Did that change recently? --- diff --git a/Misc/build.sh b/Misc/build.sh index 938ba94fd4..ff46bbab0f 100755 --- a/Misc/build.sh +++ b/Misc/build.sh @@ -161,6 +161,10 @@ if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then make install >& build/$F update_status "Installing" "$F" $start + if [ ! -x $PYTHON ]; then + ln -s ${PYTHON}2.* $PYTHON + fi + ## make and run basic tests F=make-test.out start=`current_time`