aboutsummaryrefslogtreecommitdiff
path: root/install-win32/getopenssl
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-03-10 10:02:20 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-03-10 10:02:20 +0000
commitcefe973e4ceca649a08749fb3c7f09ef09d2d145 (patch)
treeb280e66ca98b00de8337750b4cd3b1c9edb93579 /install-win32/getopenssl
parentAdded new OpenVPN icon and installer graphic. (diff)
downloadopenvpn-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/getopenssl4
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