diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-08-13 13:49:21 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-08-13 13:49:21 +0200 |
commit | de6c60c90faae210645156adc5c9121257567595 (patch) | |
tree | 545b43e9f609d8ccba9ed3c2498a60450e9eb182 | |
parent | 7784f2a4c715cc020eb7123f5ad248c3ce9812e3 (diff) |
fix encoding of build-native.sh
-rwxr-xr-x | build-native.sh | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/build-native.sh b/build-native.sh index de76737a..06466925 100755 --- a/build-native.sh +++ b/build-native.sh @@ -1,12 +1,12 @@ -ndk-build APP_API=all -j 8
-if [ $? = 0 ]; then
- cd libs
- mkdir -p ../assets
- for i in *
- do
- cp -v $i/minivpn ../assets/minivpn.$i
- done
- # Removed compiled openssl libs, will use platform so libs
- # Reduces size of apk
- rm -v */libcrypto.so */libssl.so
-fi
\ No newline at end of file +ndk-build APP_API=all -j 8 +if [ $? = 0 ]; then + cd libs + mkdir -p ../assets + for i in * + do + cp -v $i/minivpn ../assets/minivpn.$i + done + # Removed compiled openssl libs, will use platform so libs + # Reduces size of apk + rm -v */libcrypto.so */libssl.so +fi |