diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-03-10 10:02:20 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-03-10 10:02:20 +0000 |
commit | cefe973e4ceca649a08749fb3c7f09ef09d2d145 (patch) | |
tree | b280e66ca98b00de8337750b4cd3b1c9edb93579 /install-win32/getopenssl | |
parent | Added new OpenVPN icon and installer graphic. (diff) | |
download | openvpn-cefe973e4ceca649a08749fb3c7f09ef09d2d145.tar.xz |
First working version of XGUI inclusion.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2834 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'install-win32/getopenssl')
-rw-r--r-- | install-win32/getopenssl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/install-win32/getopenssl b/install-win32/getopenssl index b7d2629..118fcb3 100644 --- a/install-win32/getopenssl +++ b/install-win32/getopenssl @@ -9,7 +9,9 @@ if [ -d "$OPENSSL_DIR" ] ; then mkdir -p $GENOUT/bin &>/dev/null for f in libeay32.dll libssl32.dll openssl.exe ; do cp $OPENSSL_DIR/$f $GENOUT/lib - strip $GENOUT/lib/$f + if [ -z "$NO_STRIP" ]; then + strip $GENOUT/lib/$f + fi done mv $GENOUT/lib/openssl.exe $GENOUT/bin else |