diff options
author | Phil Blundell <philb@gnu.org> | 2012-09-26 12:55:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-26 14:46:37 +0100 |
commit | 57dcacbd6f35ae2d6b505f044bbefad35da66959 (patch) | |
tree | 8cce9cc155f18ad94ec7a94378ae116dba0ef4f2 | |
parent | 6bb0d37529a82b953d374f2d76c2412d7cee587b (diff) | |
download | openembedded-core-57dcacbd6f35ae2d6b505f044bbefad35da66959.tar.gz openembedded-core-57dcacbd6f35ae2d6b505f044bbefad35da66959.tar.bz2 openembedded-core-57dcacbd6f35ae2d6b505f044bbefad35da66959.zip |
package_ipk: Remove spurious '-i' in grep command for log_check
ipk_log_check uses a case-sensitive grep (which is correct) when deciding
whether there were any errors or not. But if it decides that there were, it
then uses a case-insensitive grep to display them. This results in a large
amount of irrelevant and confusing output which makes it hard to see the real
errors amongst the noise.
Suppress this by removing the unwanted -i.
Signed-off-by: Phil Blundell <pb@pbcl.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/package_ipk.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass index efe299eec8..59cb856847 100644 --- a/meta/classes/package_ipk.bbclass +++ b/meta/classes/package_ipk.bbclass @@ -182,7 +182,7 @@ ipk_log_check() { then echo "log_check: There were error messages in the logfile" printf "log_check: Matched keyword: [$keyword_die]\n\n" - echo "$lf_txt" | grep -v log_check | grep -C 5 -i "$keyword_die" + echo "$lf_txt" | grep -v log_check | grep -C 5 "$keyword_die" echo "" do_exit=1 fi |