Merge commit '82fea30fcce1d169de7ec42be84d079e0899519c' into feature/update-dependenies

This commit is contained in:
Sergey Abramchuk
2018-01-08 11:44:56 +03:00
437 changed files with 7377 additions and 2864 deletions
@@ -2,20 +2,23 @@
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
echo O3 var must point to ovpn3 tree
exit 1
fi
if [ -z "$DEP_DIR" ]; then
echo DEP_DIR var must point to the dependency build directory
exit 1
fi
cd $DEP_DIR
. $O3/core/vars/android-sdk-path
cd $DEP_DIR
rm -rf lz4
mkdir lz4
for target in android-a8a android-a8a-dbg android-a7a android-a7a-dbg android android-dbg ; do
TARGETS=${TARGETS:-android-a7a android-a8a android-x86}
for target in $TARGETS; do
echo '***************' TARGET $target
TARGET=$target $O3/core/deps/lz4/build-lz4
done