fix @cclauss's mess

This commit is contained in:
Kenneth Reitz
2014-10-28 01:19:03 -04:00
parent 536b10b249
commit f3b1e54df4
2 changed files with 11 additions and 6 deletions
+5 -3
View File
@@ -4,10 +4,12 @@
OUT_PREFIX=$1
source ./download_python
download_python "3.3.6"
echo "Building Python..."
SOURCE_TARBALL='http://python.org/ftp/python/3.3.6/Python-3.3.6.tgz'
curl -L $SOURCE_TARBALL | tar xz
mv Python-3.3.6 src
cd src
./configure --prefix=$OUT_PREFIX --enable-shared
make
make install
+6 -3
View File
@@ -4,12 +4,15 @@
OUT_PREFIX=$1
source ./download_python
download_python "3.4.2"
echo "Building Python..."
SOURCE_TARBALL='http://python.org/ftp/python/3.4.2/Python-3.4.2.tgz'
curl -L $SOURCE_TARBALL | tar xz
mv Python-3.4.2 src
cd src
./configure --prefix=$OUT_PREFIX --with-ensurepip=no --enable-shared
make
make install
ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python