diff options
| author | Steven Fackler <[email protected]> | 2015-07-23 21:50:49 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-07-23 21:51:06 -0700 |
| commit | 3fc8482d368530ff619cc580f9d4f16344cbb3c5 (patch) | |
| tree | 0bb1f0d80318d122ba7de60caa9e4dc3da31a7f7 | |
| parent | Merge pull request #239 from jethrogb/topic/x509_extension_fix (diff) | |
| download | rust-openssl-3fc8482d368530ff619cc580f9d4f16344cbb3c5.tar.xz rust-openssl-3fc8482d368530ff619cc580f9d4f16344cbb3c5.zip | |
Make curl follow redirects
| -rwxr-xr-x | openssl/test/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/test/build.sh b/openssl/test/build.sh index 27def60a..9334083d 100755 --- a/openssl/test/build.sh +++ b/openssl/test/build.sh @@ -4,7 +4,7 @@ set -e mkdir /tmp/openssl cd /tmp/openssl sudo apt-get install gcc make -curl https://openssl.org/source/openssl-1.0.2-latest.tar.gz | tar --strip-components=1 -xzf - +curl -L https://openssl.org/source/openssl-1.0.2-latest.tar.gz | tar --strip-components=1 -xzf - ./config --prefix=/usr/ shared make sudo make install |