From 9815f8b25238e22fc14f8305b0bb53711bbb3de6 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Wed, 26 Jul 2006 04:00:18 +0000 Subject: [PATCH] Hmm, only python2.x is installed, not plain python. Did that change recently? --- Misc/build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Misc/build.sh b/Misc/build.sh index 938ba94fd42..ff46bbab0f7 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`