Skip to content
Snippets Groups Projects
Commit f3b1e54d authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

fix @cclauss's mess

parent 536b10b2
No related branches found
No related tags found
No related merge requests found
...@@ -4,10 +4,12 @@ ...@@ -4,10 +4,12 @@
OUT_PREFIX=$1 OUT_PREFIX=$1
source ./download_python echo "Building Python..."
download_python "3.3.6" 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 cd src
./configure --prefix=$OUT_PREFIX --enable-shared ./configure --prefix=$OUT_PREFIX --enable-shared
make make
make install make install
......
...@@ -4,12 +4,15 @@ ...@@ -4,12 +4,15 @@
OUT_PREFIX=$1 OUT_PREFIX=$1
source ./download_python echo "Building Python..."
download_python "3.4.2" 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 cd src
./configure --prefix=$OUT_PREFIX --with-ensurepip=no --enable-shared ./configure --prefix=$OUT_PREFIX --with-ensurepip=no --enable-shared
make make
make install make install
ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment