Compare commits

...

2 Commits

Author SHA1 Message Date
Kenneth Reitz a0029a8411 suppress pip-grep errors 2014-08-01 18:10:15 -04:00
Kenneth Reitz 2de3b6cf1c remove debug statement 2014-08-01 18:04:46 -04:00
2 changed files with 2 additions and 4 deletions
+1 -3
View File
@@ -19,10 +19,8 @@ source $BIN_DIR/utils
bpwatch start libffi_install bpwatch start libffi_install
whereis pkg-config
# If pylibmc exists within requirements, use vendored cryptography. # If pylibmc exists within requirements, use vendored cryptography.
if (pip-grep -s requirements.txt cffi pylibmc) then if (pip-grep -s requirements.txt cffi pylibmc &> /dev/null) then
if [ -d ".heroku/vendor/lib/libffi-3.1.1" ]; then if [ -d ".heroku/vendor/lib/libffi-3.1.1" ]; then
export LIBFFI=$(pwd)/vendor export LIBFFI=$(pwd)/vendor
+1 -1
View File
@@ -19,7 +19,7 @@ source $BIN_DIR/utils
bpwatch start pylibmc_install bpwatch start pylibmc_install
# If pylibmc exists within requirements, use vendored libmemcached. # If pylibmc exists within requirements, use vendored libmemcached.
if (pip-grep -s requirements.txt pylibmc) then if (pip-grep -s requirements.txt pylibmc &> /dev/null) then
if [ -d ".heroku/vendor/lib/sasl2" ]; then if [ -d ".heroku/vendor/lib/sasl2" ]; then
export LIBMEMCACHED=$(pwd)/vendor export LIBMEMCACHED=$(pwd)/vendor