commit | 9815f8b25238e22fc14f8305b0bb53711bbb3de6 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Wed Jul 26 04:00:18 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Wed Jul 26 04:00:18 2006 +0000 |
tree | 00af960ae1443dfd082f062981e07a31eb16beee | |
parent | 91343075dca07ec9207b17ba339c4ca2137aa72c [diff] |
Hmm, only python2.x is installed, not plain python. Did that change recently?
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 @@ 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`