aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2010-10-01 11:49:39 +0000
committerTom Rini <tom_rini@mentor.com>2010-10-04 09:32:09 -0700
commitb4c0cc2e7fabf253e4c47620fa5d56e1d4082415 (patch)
tree57d0e0138b336cda0ce62ad84862e7945fbe105e /classes
parent20ce3847a8845955e5a0950a78c893a00a5e2df3 (diff)
downloadopenembedded-b4c0cc2e7fabf253e4c47620fa5d56e1d4082415.tar.gz
insane.bbclass: Skip '.pc' in qa_configure
The files in the .pc directory won't have anything useful in them and are often unreadable so lets just skip them. Signed-off-by: Tom Rini <tom_rini@mentor.com> Acked-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/insane.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/insane.bbclass b/classes/insane.bbclass
index 5afa63c01f..9087efd141 100644
--- a/classes/insane.bbclass
+++ b/classes/insane.bbclass
@@ -466,6 +466,8 @@ python do_qa_configure() {
configs = []
bb.debug(1, "Checking sanity of the config.log file")
for root, dirs, files in os.walk(bb.data.getVar('WORKDIR', d, True)):
+ if ".pc" in root:
+ continue
statement = "grep 'CROSS COMPILE Badness:' %s > /dev/null" % \
os.path.join(root,"config.log")
if "config.log" in files: