mirror of
https://github.com/OpenVPN/openvpn.git
synced 2025-05-08 21:25:53 +08:00

signing drivers and .exe files. Added win/tap_span.py for building multiple versions of the TAP driver and tapinstall binaries using different DDK versions to span from Win2K to Win7 and beyond. Version 2.1.3 git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@6404 e7ae566f-a301-0410-adde-c780ea21d3b5
20 lines
375 B
Bash
20 lines
375 B
Bash
#!/bin/sh
|
|
|
|
# Get and sign the OpenVPN GUI
|
|
|
|
# load version.nsi definitions
|
|
. autodefs/defs.sh
|
|
|
|
GUI="$OPENVPN_GUI_DIR/$OPENVPN_GUI"
|
|
|
|
if [ -f "$GUI" ]; then
|
|
mkdir -p $GENOUT/bin &>/dev/null
|
|
cp $GUI $GENOUT/bin
|
|
fi
|
|
|
|
if [ -f "$GENOUT/bin/$OPENVPN_GUI" ]; then
|
|
echo '!define OPENVPN_GUI_DEFINED' >autodefs/guidefs.nsi
|
|
else
|
|
cat /dev/null >autodefs/guidefs.nsi
|
|
fi
|