diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-08-23 20:11:33 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-08-23 20:11:33 +0200 |
commit | ef11c9e512c3916388921992a1b9a363bfef2d75 (patch) | |
tree | 36262de21c75aadc152712c17e218cd6cce11a49 /embedded-test.sh | |
parent | 6b7317d35ef5e9b09a4f0472f0e33442ac6f0420 (diff) |
bugfix
Diffstat (limited to 'embedded-test.sh')
-rwxr-xr-x | embedded-test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embedded-test.sh b/embedded-test.sh index 11f8b5d..b88f845 100755 --- a/embedded-test.sh +++ b/embedded-test.sh @@ -479,7 +479,7 @@ rdate -n \$ntp_server exit EOF fi - if [ $2 -eq "libc" ];then + if [ $2 = "libc" ];then case $libc in uclibc-ng|uclibc) @@ -773,7 +773,7 @@ fi if [ "$vendor" = "openadk" ];then for arch in ${archlist}; do build_openadk $arch notest - if [ ! -z $tests ];then + if [ ! -z "$tests" ];then for test in ${tests}; do if [ $test = "boot" -o $test = "libc" -o $test = "ltp" -o $test = "native" ];then case $arch in |