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 | openembedded-core-2f3a7348b7da637d2362e7ed50c96a248ff58fc5.tar.gz openembedded-core-2f3a7348b7da637d2362e7ed50c96a248ff58fc5.tar.bz2 openembedded-core-2f3a7348b7da637d2362e7ed50c96a248ff58fc5.tar.xz openembedded-core-2f3a7348b7da637d2362e7ed50c96a248ff58fc5.zip |
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 6f06d854e..5d3ef92a2 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -575,7 +575,7 @@ python do_qa_configure() { os.path.join(root,"config.log") if "config.log" in files: if os.system(statement) == 0: - bb.fatal("""This autoconf log indicates errors, it looked at host includes. + bb.fatal("""This autoconf log indicates errors, it looked at host include and/or library paths while determining system capabilities. Rerun configure task after fixing this. The path was '%s'""" % root) if "configure.ac" in files: |