aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/rootfs_deb.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-12-05 11:10:28 +0000
committerRichard Purdie <richard@openedhand.com>2006-12-05 11:10:28 +0000
commit4cf2d71a16081bb27552e69ce483c0762b726b66 (patch)
tree6420ace1ee5aa52602b3a67ab723fbd434d1631b /meta/classes/rootfs_deb.bbclass
parentc30cb8c7aae27d7c3967a5bb168e684381fc662a (diff)
downloadopenembedded-core-contrib-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
Diffstat (limited to 'meta/classes/rootfs_deb.bbclass')
-rw-r--r--meta/classes/rootfs_deb.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/rootfs_deb.bbclass b/meta/classes/rootfs_deb.bbclass
index 533eaab4d1..59909d6852 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"