summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2009-01-01 13:50:59 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2009-01-01 13:50:59 +0000
commit08580d0a33ed92ab36391b31c4745db86541b1da (patch)
treef1e194afd506fef17db1e434a93d67b7c57992a2
parent60d9e1375aedfa585e997f88b675157581ab736c (diff)
downloadopenvpn-08580d0a33ed92ab36391b31c4745db86541b1da.tar.gz
openvpn-08580d0a33ed92ab36391b31c4745db86541b1da.tar.xz
openvpn-08580d0a33ed92ab36391b31c4745db86541b1da.zip
In Windows installer generator, don't sign the installer .exe
if EXTRACT_FILES is defined in settings.in. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3791 e7ae566f-a301-0410-adde-c780ea21d3b5
-rw-r--r--install-win32/buildinstaller2
1 files changed, 1 insertions, 1 deletions
diff --git a/install-win32/buildinstaller b/install-win32/buildinstaller
index 83057bb..53a7d31 100644
--- a/install-win32/buildinstaller
+++ b/install-win32/buildinstaller
@@ -9,6 +9,6 @@ rm -f $GENOUT/*.exe
tail -20 makensis.log
# sign the installer
-if [ -d "$SIGNTOOL" ]; then
+if [ -d "$SIGNTOOL" ] && ! [ -n "${EXTRACT_FILES+x}" ]; then
TARGET_EXE="$(echo $(pwd)/$GENOUT/*.exe)" $SIGNTOOL/signexe
fi