aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2017-07-27 19:59:24 -0700
committerSteven Fackler <[email protected]>2017-07-27 22:20:01 -0700
commit381267816f269de1649b38389ea054da66f6a34a (patch)
treeba494404d2f76c6518db84257d57653c2453bac8 /test
parentTweak formatting on cipher list (diff)
downloadrust-openssl-381267816f269de1649b38389ea054da66f6a34a.tar.xz
rust-openssl-381267816f269de1649b38389ea054da66f6a34a.zip
Little circle cleanup
Diffstat (limited to 'test')
-rwxr-xr-xtest/build_openssl.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/build_openssl.sh b/test/build_openssl.sh
index 3decd937..67a0d804 100755
--- a/test/build_openssl.sh
+++ b/test/build_openssl.sh
@@ -43,13 +43,12 @@ curl -o ${OUT} -L --max-redirs ${MAX_REDIRECTS} ${URL1} \
tar --strip-components=1 -xzf ${OUT}
-PREFIX=${HOME}/openssl
case "${LIBRARY}" in
"openssl")
- ./Configure --prefix=${PREFIX} ${OS_COMPILER} -fPIC -g ${OS_FLAGS} no-shared
+ ./Configure --prefix=${OPENSSL_DIR} ${OS_COMPILER} -fPIC -g ${OS_FLAGS} no-shared
;;
"libressl")
- ./configure --prefix=${PREFIX} --disable-shared --with-pic
+ ./configure --prefix=${OPENSSL_DIR} --disable-shared --with-pic
;;
esac