aboutsummaryrefslogtreecommitdiff
path: root/openssl
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-06-27 15:45:48 -0700
committerSteven Fackler <[email protected]>2015-06-27 15:45:48 -0700
commit645430602d0f4d56c6ab153b68a11c6be6d8b183 (patch)
tree7a2ce581cca5a059bcac14f18d4fe21c4d9fbb84 /openssl
parentImport shim'd HMAC stuff with the original name (diff)
downloadrust-openssl-645430602d0f4d56c6ab153b68a11c6be6d8b183.tar.xz
rust-openssl-645430602d0f4d56c6ab153b68a11c6be6d8b183.zip
Don't build a custom openssl on OSX
I don't believe the bugfix the required this is needed anymore
Diffstat (limited to 'openssl')
-rwxr-xr-xopenssl/test/build.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/openssl/test/build.sh b/openssl/test/build.sh
deleted file mode 100755
index 27def60a..00000000
--- a/openssl/test/build.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-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 -
-./config --prefix=/usr/ shared
-make
-sudo make install