diff --git a/builds/runtimes/python-2.7.7 b/builds/runtimes/python-2.7.7
index 2c6a60e1fa271749a98113e5033d2353d6433e7d..7ff982fd4decc917af4876b6a545789a54910eb2 100755
--- a/builds/runtimes/python-2.7.7
+++ b/builds/runtimes/python-2.7.7
@@ -10,6 +10,6 @@ curl -L $SOURCE_TARBALL | tar xz
 mv Python-2.7.7 src
 cd src
 
-./configure --prefix=$OUT_PREFIX --enable-shared
+./configure --prefix=$OUT_PREFIX
 make
 make install
diff --git a/builds/runtimes/python-2.7.7-shared b/builds/runtimes/python-2.7.7-shared
new file mode 100755
index 0000000000000000000000000000000000000000..2c6a60e1fa271749a98113e5033d2353d6433e7d
--- /dev/null
+++ b/builds/runtimes/python-2.7.7-shared
@@ -0,0 +1,15 @@
+#!/usr/bin/env bash
+# Build Path: /app/.heroku/python/
+# Build Deps: libraries/sqlite
+
+OUT_PREFIX=$1
+
+echo "Building Python..."
+SOURCE_TARBALL='http://python.org/ftp/python/2.7.7/Python-2.7.7.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.7.7 src
+cd src
+
+./configure --prefix=$OUT_PREFIX --enable-shared
+make
+make install