Merge pull request #911 from heroku/https-instead-of-ftp

Use GitHub HTTPS instead of sourceware FTP
This commit is contained in:
Casey
2020-03-03 15:04:28 -07:00
committed by GitHub
2 changed files with 8 additions and 5 deletions
+6 -3
View File
@@ -2,12 +2,15 @@
# Master
- Python 3.8.2 now available.
- Correct ftp to https in vendored file
--------------------------------------------------------------------------------
# 163 (2020-02-20)
# 165 (2020-02-27)
- Python 3.8.2 now available.
# 164 (2020-02-20)
- Update requirements.txt builds to use Pip 20.0.2
- Download get-pip.py to tmpdir instead of root dir
+2 -2
View File
@@ -15,11 +15,11 @@ hash -r
echo "Building libffi…"
SOURCE_TARBALL='ftp://sourceware.org/pub/libffi/libffi-3.1.tar.gz'
SOURCE_TARBALL='https://github.com/libffi/libffi/archive/v3.1.tar.gz'
curl -L $SOURCE_TARBALL | tar x
cd libffi-3.1
cd v3.1
./configure --prefix=$OUT_PREFIX --disable-static &&
make
make install