0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 04:02:15 +02:00

asio: make sure to switch to DEP_DIR before building

Signed-off-by: Antonio Quartulli <antonio@openvpn.net>
This commit is contained in:
Antonio Quartulli 2017-09-26 17:13:29 +08:00 committed by Antonio Quartulli
parent 4302651dd8
commit 1b5a78439e

View File

@ -5,6 +5,11 @@ if [ -z "$O3" ]; then
echo O3 var must point to ovpn3 tree
exit 1
fi
if [ -z "$DEP_DIR" ]; then
echo DEP_DIR var must point to ovpn3 dependency tree
exit 1
fi
cd $DEP_DIR
[ -z "$DL" ] && DL=~/Downloads