diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-10-24 06:04:34 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-10-24 06:04:34 +0000 |
commit | 9bf6e9ac04d74ac8d58a8d8af63cb0eea0648bde (patch) | |
tree | 38eccf5365be5313de968a56b0ab7955f8b4b887 /install-win32/maketext | |
parent | Modified Windows domake-win build system to write all openvpn.nsi (diff) | |
download | openvpn-9bf6e9ac04d74ac8d58a8d8af63cb0eea0648bde.tar.xz |
Added optional files SAMPCONF_CONF2 (second sample configuration
file) and SAMPCONF_DH (Diffie-Helman parameters) to Windows
build system, and may be defined in settings.in.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3450 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'install-win32/maketext')
-rw-r--r-- | install-win32/maketext | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install-win32/maketext b/install-win32/maketext index a66715c..5aed4ea 100644 --- a/install-win32/maketext +++ b/install-win32/maketext @@ -45,9 +45,11 @@ if [ -n "$SAMPCONF_DIR" ]; then c=$GENOUT/conf mkdir -p $c &>/dev/null test -n "$SAMPCONF_CONF" && cp "../$SAMPCONF_DIR/$SAMPCONF_CONF" $c + test -n "$SAMPCONF_CONF2" && cp "../$SAMPCONF_DIR/$SAMPCONF_CONF2" $c test -n "$SAMPCONF_P12" && cp "../$SAMPCONF_DIR/$SAMPCONF_P12" $c test -n "$SAMPCONF_TA" && cp "../$SAMPCONF_DIR/$SAMPCONF_TA" $c test -n "$SAMPCONF_CA" && cp "../$SAMPCONF_DIR/$SAMPCONF_CA" $c test -n "$SAMPCONF_CRT" && cp "../$SAMPCONF_DIR/$SAMPCONF_CRT" $c test -n "$SAMPCONF_KEY" && cp "../$SAMPCONF_DIR/$SAMPCONF_KEY" $c + test -n "$SAMPCONF_DH" && cp "../$SAMPCONF_DIR/$SAMPCONF_DH" $c fi |