Merge change Ia78a7753 into eclair

* changes:
  Remove bash-specific operator from build/host-setup.sh.
This commit is contained in:
Android (Google) Code Review
2009-10-01 23:26:50 -04:00
2 changed files with 3 additions and 1 deletions

View File

@@ -116,7 +116,7 @@ check_awk ()
fi fi
local result local result
result=`echo "" | $executable -f build/check-awk.awk` result=`echo "" | $executable -f build/check-awk.awk`
if [ "$result" == "Pass" ] ; then if [ "$result" = "Pass" ] ; then
AWK="$1" AWK="$1"
fi fi
log2 " Check $result" log2 " Check $result"

View File

@@ -5,6 +5,8 @@ current version
IMPORTANT BUG FIXES: 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 - Make target shared libraries portable to systems that don't use the exact same
toolchain (GCC 4.2.1) . toolchain (GCC 4.2.1) .