summaryrefslogtreecommitdiffstats
path: root/Misc/build.sh
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-07-26 04:00:18 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-07-26 04:00:18 (GMT)
commit9815f8b25238e22fc14f8305b0bb53711bbb3de6 (patch)
tree00af960ae1443dfd082f062981e07a31eb16beee /Misc/build.sh
parent91343075dca07ec9207b17ba339c4ca2137aa72c (diff)
downloadcpython-9815f8b25238e22fc14f8305b0bb53711bbb3de6.zip
cpython-9815f8b25238e22fc14f8305b0bb53711bbb3de6.tar.gz
cpython-9815f8b25238e22fc14f8305b0bb53711bbb3de6.tar.bz2
Hmm, only python2.x is installed, not plain python. Did that change recently?
Diffstat (limited to 'Misc/build.sh')
-rwxr-xr-xMisc/build.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/build.sh b/Misc/build.sh
index 938ba94..ff46bba 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`