diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-02-01 10:13:59 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-02-01 10:13:59 +0000 |
commit | 63082c8a210741e2c390f78669009697128cfe30 (patch) | |
tree | 0df33f1061a4cb681804f9d77fb0493d0578b5c0 /install-win32/getgui | |
parent | Version 2.1_rc7 (diff) | |
download | openvpn-63082c8a210741e2c390f78669009697128cfe30.tar.xz |
Changes to Windows build system to make it easier to do
partial builds, where only a subset of OpenVPN installer
components are built. See ./domake-win comments.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2710 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | install-win32/getgui | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/install-win32/getgui b/install-win32/getgui index 1419bc9..c7fd2bb 100644 --- a/install-win32/getgui +++ b/install-win32/getgui @@ -2,19 +2,17 @@ # Get and sign the OpenVPN GUI -c=`pwd` - # load version.nsi definitions . autodefs/defs.sh GUI="$OPENVPN_GUI_DIR/$OPENVPN_GUI" if [ -e "$GUI" ]; then - cp $GUI bin + mkdir -p $GENOUT/bin &>/dev/null + cp $GUI $GENOUT/bin echo '!define OPENVPN_GUI_DEFINED' >autodefs/guidefs.nsi if [ -d "$SIGNTOOL" ]; then - export TARGET_EXE="bin/$OPENVPN_GUI" - $SIGNTOOL/signexe + TARGET_EXE="$GENOUT/bin/$OPENVPN_GUI" $SIGNTOOL/signexe fi else cat /dev/null >autodefs/guidefs.nsi |