diff options
| author | Steven Fackler <[email protected]> | 2015-08-15 14:37:03 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-08-15 14:37:03 -0700 |
| commit | fa5c4cb5dfb1abfcd999fb7a16891f5da155b105 (patch) | |
| tree | 375bbd1d463987834052766ab4088a8940d51991 | |
| parent | Merge pull request #240 from jethrogb/topic/x509_req_extension (diff) | |
| download | rust-openssl-fa5c4cb5dfb1abfcd999fb7a16891f5da155b105.tar.xz rust-openssl-fa5c4cb5dfb1abfcd999fb7a16891f5da155b105.zip | |
Fix openssl source link in tests
| -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 9334083d..db517ab3 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 -L https://openssl.org/source/openssl-1.0.2-latest.tar.gz | tar --strip-components=1 -xzf - +curl https://openssl.org/source/openssl-1.0.2d.tar.gz | tar --strip-components=1 -xzf - ./config --prefix=/usr/ shared make sudo make install |