Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] package_deb: When searching for E:, anchor expression
@ 2012-06-29 15:51 Richard Purdie
  0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2012-06-29 15:51 UTC (permalink / raw)
  To: openembedded-core

If we don't do this it will match on expressions like "NOTE:" which
are not fatal errors.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/classes/package_deb.bbclass b/meta/classes/package_deb.bbclass
index 0a3e976..0a8dc1b 100644
--- a/meta/classes/package_deb.bbclass
+++ b/meta/classes/package_deb.bbclass
@@ -187,7 +187,7 @@ deb_log_check() {
 	lf_path="$2"
 
 	lf_txt="`cat $lf_path`"
-	for keyword_die in "E:"
+	for keyword_die in "^E:"
 	do
 		if (echo "$lf_txt" | grep -v log_check | grep "$keyword_die") >/dev/null 2>&1
 		then







^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-06-29 16:02 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-29 15:51 [PATCH] package_deb: When searching for E:, anchor expression Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox