From 4cc660a3a73e866c5637f163033a512d59d6bbff Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 26 Feb 2012 16:40:17 -0500 Subject: [PATCH] bugs --- bin/compile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/compile b/bin/compile index f3e60cc..27fc9c9 100755 --- a/bin/compile +++ b/bin/compile @@ -56,7 +56,7 @@ done # Create virtualenv. Rebuild if corrupt. set +e -echo "-----> Preparing Python ($PYTHON_VERSION)" +echo "-----> Preparing Python interpreter ($PYTHON_VERSION)" PYTHON_EXE=$($BIN_DIR/python-build install $PYTHON_VERSION --quiet) PYTHON_EXE=./python/vendor/python/bin/python @@ -104,7 +104,7 @@ fi # Make virtualenv relocatable. set +e -OUT=$(virtualenv --relocatable .) +OUT=$(virtualenv --python $PYTHON_EXE --relocatable .) [ $? -ne 0 ] && { echo " ! Error making virtualenv relocatable" echo "$OUT" | indent