diff options
Diffstat (limited to 'scripts/init.sh')
-rwxr-xr-x | scripts/init.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/init.sh b/scripts/init.sh index 78a0b430..7e3d8ccb 100755 --- a/scripts/init.sh +++ b/scripts/init.sh @@ -89,6 +89,10 @@ if [ ! -d libicnet ]; then echo "libicnet not found" git clone -b libicnet/master https://gerrit.fd.io/r/cicn libicnet fi +if [ ! -d viper ]; then + echo "viper not found" + git clone -b viper/master https://gerrit.fd.io/r/cicn viper +fi cd ../ @@ -133,7 +137,7 @@ if [ ! -d ${INSTALLATION_DIR}/include/boost ]; then fi echo "Copy libcrystax in workspace" -cp -n crystax-ndk-10.3.2/sources/crystax/libs/${ABI}/libcrystax.* ${INSTALLATION_DIR}/lib/ +cp crystax-ndk-10.3.2/sources/crystax/libs/${ABI}/libcrystax.* ${INSTALLATION_DIR}/lib/ echo "Create libevent" @@ -195,4 +199,6 @@ if [ ! -d ${INSTALLATION_DIR}/include/libxml ]; then cp -rf jni/libxml2/include/* ${INSTALLATION_DIR}/include/ cp -f obj/local/${ABI}/libxml2.a ${INSTALLATION_DIR}/lib/ cd .. -fi
\ No newline at end of file +fi + +cd .. |