summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2009-02-13 03:36:12 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2009-02-13 03:36:12 +0000
commitd382bea75689dcefa8dc7d909a8b737c376f74b4 (patch)
treea6ec5082d53a82de5f67b74010458d73184f1689
parent763602d3e338eb5d9a69d5a9b99bcbd33dabaf11 (diff)
downloadopenvpn-d382bea75689dcefa8dc7d909a8b737c376f74b4.tar.gz
openvpn-d382bea75689dcefa8dc7d909a8b737c376f74b4.tar.xz
openvpn-d382bea75689dcefa8dc7d909a8b737c376f74b4.zip
install-win32/buildinstaller will now always sign executable
if SIGNTOOL is defined, even if EXTRACT_FILES is enabled. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3976 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 53a7d31..83057bb 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" ] && ! [ -n "${EXTRACT_FILES+x}" ]; then
+if [ -d "$SIGNTOOL" ]; then
TARGET_EXE="$(echo $(pwd)/$GENOUT/*.exe)" $SIGNTOOL/signexe
fi