diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-02-01 19:44:53 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-02-01 19:44:53 +0000 |
commit | ba865c55a61b4dd3bcf3e2c6bb2632e38d07cd2a (patch) | |
tree | ed84e82bd50f62fc8b431036d4aa2d0eff66abbe /install-win32/getprebuilt | |
parent | Changes to Windows build system to make it easier to do (diff) | |
download | openvpn-ba865c55a61b4dd3bcf3e2c6bb2632e38d07cd2a.tar.xz |
Changes to Windows build system: added GENOUT_PREBUILT mode
to allow building an OpenVPN installer with a reduced set
of prerequisites. See comments in domake-win for more info.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2711 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'install-win32/getprebuilt')
-rw-r--r-- | install-win32/getprebuilt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/install-win32/getprebuilt b/install-win32/getprebuilt new file mode 100644 index 0000000..36c4827 --- /dev/null +++ b/install-win32/getprebuilt @@ -0,0 +1,10 @@ +#!/bin/sh + +# get version.nsi definitions +. autodefs/defs.sh + +# Get PKCS11-helper libraries +if [ -d "$GENOUT_PREBUILT" ] && ! [ -d "$GENOUT" ]; then + echo LOADING prebuilt binaries from $GENOUT_PREBUILT + cp -a $GENOUT_PREBUILT $GENOUT +fi |