diff options
author | Arne Schwabe <arne@rfc2549.org> | 2014-03-02 12:36:25 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2014-03-02 12:36:25 +0100 |
commit | 9acdcd21843cd194e280d39c8a0ea52f92a377ca (patch) | |
tree | afd713d215ddbb5517beabc14ee03654f4aaad95 /main/misc/build-native.sh | |
parent | fca9ba79d9e6206698c7954724dfca0cfa228dda (diff) |
Minor fixes
Diffstat (limited to 'main/misc/build-native.sh')
-rwxr-xr-x | main/misc/build-native.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/main/misc/build-native.sh b/main/misc/build-native.sh index 37648bd1..52cb18aa 100755 --- a/main/misc/build-native.sh +++ b/main/misc/build-native.sh @@ -22,7 +22,11 @@ if [ -d openvpn/.git ]; then cd .. fi -ndk-build APP_API=all -j 8 +if [ "x$1" = "x" ]; then + ndk-build APP_API=all -j 8 +else + ndk-build $@ +fi if [ $? = 0 ]; then rm -rf ovpnlibs/ |