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
This commit is contained in:
james 2009-01-01 13:50:59 +00:00
parent 60d9e1375a
commit 08580d0a33

View 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