diff --git a/ndk/build/host-setup.sh b/ndk/build/host-setup.sh index 6ee08da31..a29cf845d 100755 --- a/ndk/build/host-setup.sh +++ b/ndk/build/host-setup.sh @@ -116,7 +116,7 @@ check_awk () fi local result result=`echo "" | $executable -f build/check-awk.awk` - if [ "$result" == "Pass" ] ; then + if [ "$result" = "Pass" ] ; then AWK="$1" fi log2 " Check $result" diff --git a/ndk/docs/CHANGES.TXT b/ndk/docs/CHANGES.TXT index c03fc6093..94ac7bce2 100644 --- a/ndk/docs/CHANGES.TXT +++ b/ndk/docs/CHANGES.TXT @@ -5,6 +5,8 @@ current version IMPORTANT BUG FIXES: +- Fix build/host-setup.sh to execute as a Bourne shell script (again) + - Make target shared libraries portable to systems that don't use the exact same toolchain (GCC 4.2.1) .