2.7.1, 2.7.2

This commit is contained in:
Kenneth Reitz
2012-08-05 19:48:50 -04:00
parent f156823f1a
commit b5fb89a3be
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
# Usage: $ build.sh <output-dir
SOURCE_TARBALL='http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2'
SOURCE_TARBALL='http://www.python.org/ftp/python/2.7.1/Python-2.7.1.tar.bz2'
curl $SOURCE_TARBALL | tar jx
mv Python-2.7.3 src
mv Python-2.7.1 src
cd src
./configure --prefix=$(pwd)/../python
@@ -11,4 +11,4 @@ make
make install
cd ..
tar cjf python-2.7.3.tar.bz2 python/
tar cjf python-2.7.1.tar.bz2 python/
+3 -3
View File
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
# Usage: $ build.sh <output-dir
SOURCE_TARBALL='http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2'
SOURCE_TARBALL='http://www.python.org/ftp/python/2.7.2/Python-2.7.2.tar.bz2'
curl $SOURCE_TARBALL | tar jx
mv Python-2.7.3 src
mv Python-2.7.2 src
cd src
./configure --prefix=$(pwd)/../python
@@ -11,4 +11,4 @@ make
make install
cd ..
tar cjf python-2.7.3.tar.bz2 python/
tar cjf python-2.7.2.tar.bz2 python/