summaryrefslogtreecommitdiffstats
path: root/install-win32/getopenssl
diff options
context:
space:
mode:
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