diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-12 08:55:20 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-12 08:55:20 +0000 |
commit | 9c5b374d8dd247c428bd0b538e02a49f17e441d8 (patch) | |
tree | 7fb65d105f0ec78085ccb2f4d481bbde85108583 | |
parent | f506f7c89356c16aa8a1968135aee55d5f41a3c5 (diff) | |
download | buildroot-novena-9c5b374d8dd247c428bd0b538e02a49f17e441d8.tar.gz buildroot-novena-9c5b374d8dd247c428bd0b538e02a49f17e441d8.zip |
- fix syntax
-rwxr-xr-x | toolchain/dependencies/check-host-sed.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/dependencies/check-host-sed.sh b/toolchain/dependencies/check-host-sed.sh index 55104debd..a1ee28003 100755 --- a/toolchain/dependencies/check-host-sed.sh +++ b/toolchain/dependencies/check-host-sed.sh @@ -19,7 +19,7 @@ do elif test -e ".sedtest-e" ; then rm -f ".sedtest-e" SED="" - elif [ -z "${RESULT}" ] || [ "${RESULT}" != "GOODBYE"] > /dev/null ; + elif [ "x$RESULT" = "x" ] || [ "$RESULT" != "GOODBYE" ] > /dev/null ; then SED="" fi |