diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2011-02-08 10:05:46 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-08 17:53:15 +0000 |
commit | 2f3a7348b7da637d2362e7ed50c96a248ff58fc5 (patch) | |
tree | cfa312f63b5f7b1515afdd57b46418e75306c33d /meta/classes | |
parent | 07088f7711e0b53c4fac3685d15d406cf4793602 (diff) | |
download | poky-2f3a7348b7da637d2362e7ed50c96a248ff58fc5.tar.gz |
insane.bbclass: Fix config.log error message
[BUG #702]
The previous error message was confusing. It was looking for both library and
include host contamination, but the message only indicated include files.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/insane.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 6f06d854e7..5d3ef92a2e 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -575,7 +575,7 @@ python do_qa_configure() { | |||
575 | os.path.join(root,"config.log") | 575 | os.path.join(root,"config.log") |
576 | if "config.log" in files: | 576 | if "config.log" in files: |
577 | if os.system(statement) == 0: | 577 | if os.system(statement) == 0: |
578 | bb.fatal("""This autoconf log indicates errors, it looked at host includes. | 578 | bb.fatal("""This autoconf log indicates errors, it looked at host include and/or library paths while determining system capabilities. |
579 | Rerun configure task after fixing this. The path was '%s'""" % root) | 579 | Rerun configure task after fixing this. The path was '%s'""" % root) |
580 | 580 | ||
581 | if "configure.ac" in files: | 581 | if "configure.ac" in files: |