From a78a775332f5a6eed4b76b2f69d65500b9f41d2f Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Thu, 1 Oct 2009 16:38:44 -0700 Subject: [PATCH] Remove bash-specific operator from build/host-setup.sh. --- ndk/build/host-setup.sh | 2 +- ndk/docs/CHANGES.TXT | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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) .