mirror of
https://github.com/OpenVPN/openvpn.git
synced 2025-05-09 05:31:05 +08:00

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
11 lines
243 B
Bash
11 lines
243 B
Bash
#!/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
|