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/maketext | |
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 'install-win32/maketext')
-rw-r--r-- | install-win32/maketext | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/install-win32/maketext b/install-win32/maketext new file mode 100644 index 0000000..9766d20 --- /dev/null +++ b/install-win32/maketext @@ -0,0 +1,20 @@ +#!/bin/sh + +# get version.nsi definitions +. autodefs/defs.sh + +mkdir -p $GENOUT/text &>/dev/null + +# build license file +cat COPYING COPYRIGHT.GPL >$GENOUT/text/license.txt + +# copy install file +cp INSTALL-win32.txt $GENOUT/text/install-win32.txt + +# copy sample configuration files and docs +s=$GENOUT/samples +mkdir -p $s &>/dev/null +cp sample-config-files/client.conf $s/client.$PRODUCT_FILE_EXT +cp sample-config-files/server.conf $s/server.$PRODUCT_FILE_EXT +cp install-win32/sample.ovpn $s/sample.$PRODUCT_FILE_EXT +cp easy-rsa/1.0/openssl.cnf $s/openssl.cnf.sample |