summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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`