diff --git a/builds/libraries/vendor/libffi b/builds/libraries/vendor/libffi deleted file mode 100755 index ba8c7dd..0000000 --- a/builds/libraries/vendor/libffi +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env bash -# Build Path: /app/.heroku/vendor/ - -OUT_PREFIX=$1 - -# Skip the build for heroku-16. -if [[ $S3_PREFIX == "heroku-16" ]]; then - exit 0 -fi - -# Use new path, containing autoconf. -export PATH="/app/.heroku/python/bin/:$PATH" -hash -r - - -echo "Building libffi…" - -SOURCE_TARBALL='https://github.com/libffi/libffi/archive/v3.1.tar.gz' - -curl -L $SOURCE_TARBALL | tar x - -cd v3.1 -./configure --prefix=$OUT_PREFIX --disable-static && -make -make install - -# Cleanup -cd ..