diff options
-rw-r--r-- | bin/install-python.sh | 9 | ||||
-rw-r--r-- | bin/install-scons.sh | 7 |
2 files changed, 11 insertions, 5 deletions
diff --git a/bin/install-python.sh b/bin/install-python.sh index 65e3fe4..a0a0ecc 100644 --- a/bin/install-python.sh +++ b/bin/install-python.sh @@ -62,10 +62,10 @@ if test "X${ALL}" != "X"; then 2.0.1 2.1.3 2.2 - 2.3.6 - 2.4.4 + 2.3.7 + 2.4.5 " - # 2.5.1 + # 2.5.2 fi Command() @@ -76,7 +76,6 @@ Command() } for VERSION in $VERSIONS; do - DIR=`expr "$VERSION" : '\(...\)'` PYTHON=Python-${VERSION} TAR_GZ=${PYTHON}.tgz @@ -84,7 +83,7 @@ for VERSION in $VERSIONS; do if test ! -d ${DOWNLOADS}; then Command mkdir ${DOWNLOADS} fi - Command "( cd ${DOWNLOADS} && wget ${DOWNLOADS_URL}/${DIR}/${TAR_GZ} )" + Command "( cd ${DOWNLOADS} && wget ${DOWNLOADS_URL}/${VERSION}/${TAR_GZ} )" fi Command tar zxf ${DOWNLOADS}/${TAR_GZ} diff --git a/bin/install-scons.sh b/bin/install-scons.sh index 50c1cce..1ffd3c2 100644 --- a/bin/install-scons.sh +++ b/bin/install-scons.sh @@ -104,6 +104,13 @@ if test "X${ALL}" != "X"; then 0.97.0d20070809 0.97.0d20070918 0.97.0d20071212 + 0.98.0 + 0.98.1 + 0.98.2 + 0.98.3 + 0.98.4 + 0.98.5 + 1.0.0 " fi |