mirror of
https://github.com/amnezia-vpn/OpenVPNAdapter.git
synced 2026-06-05 01:51:49 +03:00
Files
develop
15 lines
299 B
Plaintext
15 lines
299 B
Plaintext
#!/usr/bin/env bash
|
|||
set -e
|
|||
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
|
|||
rm -rf cityhash
|
|||
mkdir cityhash
|
|||
TARGET=osx $O3/core/deps/cityhash/build-cityhash
|
|||
exit 0
|