diff options
author | Richard Purdie <richard@openedhand.com> | 2006-12-05 11:10:28 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-12-05 11:10:28 +0000 |
commit | 4cf2d71a16081bb27552e69ce483c0762b726b66 (patch) | |
tree | 6420ace1ee5aa52602b3a67ab723fbd434d1631b | |
parent | c30cb8c7aae27d7c3967a5bb168e684381fc662a (diff) | |
download | ast2050-yocto-poky-4cf2d71a16081bb27552e69ce483c0762b726b66.zip ast2050-yocto-poky-4cf2d71a16081bb27552e69ce483c0762b726b66.tar.gz |
rootfs_(deb|ipk).bbclass: Fix bashism so works on dash
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1002 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/classes/rootfs_deb.bbclass | 2 | ||||
-rw-r--r-- | meta/classes/rootfs_ipk.bbclass | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/meta/classes/rootfs_deb.bbclass b/meta/classes/rootfs_deb.bbclass index 533eaab..59909d6 100644 --- a/meta/classes/rootfs_deb.bbclass +++ b/meta/classes/rootfs_deb.bbclass @@ -121,7 +121,7 @@ rootfs_deb_log_check() { lf_txt="`cat $lf_path`" for keyword_die in "E:" do - if (echo "$lf_txt" | grep -v log_check | grep "$keyword_die") &>/dev/null + if (echo "$lf_txt" | grep -v log_check | grep "$keyword_die") >/dev/null 2>&1 then echo "log_check: There were error messages in the logfile" echo -e "log_check: Matched keyword: [$keyword_die]\n" diff --git a/meta/classes/rootfs_ipk.bbclass b/meta/classes/rootfs_ipk.bbclass index 42c50d3..8929b73 100644 --- a/meta/classes/rootfs_ipk.bbclass +++ b/meta/classes/rootfs_ipk.bbclass @@ -70,8 +70,7 @@ rootfs_ipk_log_check() { lf_txt="`cat $lf_path`" for keyword_die in "Cannot find package" "exit 1" ERR Fail do - - if (echo "$lf_txt" | grep -v log_check | grep "$keyword_die") &>/dev/null + if (echo "$lf_txt" | grep -v log_check | grep "$keyword_die") >/dev/null 2>&1 then echo "log_check: There were error messages in the logfile" echo -e "log_check: Matched keyword: [$keyword_die]\n" |