]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
In Windows installer generator, don't sign the installer .exe
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>
Thu, 1 Jan 2009 13:50:59 +0000 (13:50 +0000)
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>
Thu, 1 Jan 2009 13:50:59 +0000 (13:50 +0000)
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

install-win32/buildinstaller

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