[Python-checkins] r50839 - python/trunk/Misc/build.sh

neal.norwitz python-checkins at python.org
Wed Jul 26 06:00:20 CEST 2006


Author: neal.norwitz
Date: Wed Jul 26 06:00:18 2006
New Revision: 50839

Modified:
   python/trunk/Misc/build.sh
Log:
Hmm, only python2.x is installed, not plain python.  Did that change recently?

Modified: python/trunk/Misc/build.sh
==============================================================================
--- python/trunk/Misc/build.sh	(original)
+++ python/trunk/Misc/build.sh	Wed Jul 26 06:00:18 2006
@@ -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`


More information about the Python-checkins mailing list