]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
install-win32/buildinstaller will now always sign executable
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>
Fri, 13 Feb 2009 03:36:12 +0000 (03:36 +0000)
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>
Fri, 13 Feb 2009 03:36:12 +0000 (03:36 +0000)
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

install-win32/buildinstaller

index 53a7d316f2dc5d415d9ecf7ece9b6061c59596ed..83057bba65a9a22eccd43c9591682b41bd08843c 100644 (file)
@@ -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