aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhaas <rhaas@091d3ff0-52bc-4db5-b7a6-18201e4c0cca>2013-02-12 18:35:52 +0000
committerrhaas <rhaas@091d3ff0-52bc-4db5-b7a6-18201e4c0cca>2013-02-12 18:35:52 +0000
commit23422d4a221a4e68b0f8296e854b40f0f335616b (patch)
treec8166083de84de0a146fa873ad142d12926d9720
parentccd72ca18e76583ef37b0205281e83f383db1878 (diff)
unset "options" environment variable before calling "config"
this required since OpenSSL's config script uses this variable name itself and gets confused if it is already set by eg. the Cactus make system git-svn-id: http://svn.cactuscode.org/projects/ExternalLibraries/OpenSSL/trunk@39 091d3ff0-52bc-4db5-b7a6-18201e4c0cca
-rw-r--r--configure.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.sh b/configure.sh
index f93ff67..7aa3170 100644
--- a/configure.sh
+++ b/configure.sh
@@ -129,6 +129,8 @@ then
echo "OpenSSL: Configuring..."
cd ${NAME}
+ # OpenSSL's 'config' script uses $options itself, so we unset it
+ unset options
./config --prefix=${OPENSSL_DIR}
echo "OpenSSL: Building..."