diff options
author | Maxin B. John <maxin.john@intel.com> | 2015-10-05 09:09:34 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-12 14:33:35 +0100 |
commit | fd0c6de410856ec42e20762163575f0efde44541 (patch) | |
tree | 01df8474624f5d8bf35da2f56a998b6d5571c893 | |
parent | 31f34494b842d6c49b040db70ba5da428594f32c (diff) | |
download | openembedded-core-fd0c6de410856ec42e20762163575f0efde44541.tar.gz openembedded-core-fd0c6de410856ec42e20762163575f0efde44541.tar.bz2 openembedded-core-fd0c6de410856ec42e20762163575f0efde44541.zip |
insane.bbclass: remove misleading path in warning
cross-compilation warning from insane.bbclass is slightly misleading.
So, remove the misleading path from warning.
[YOCTO #7540]
Signed-off-by: Maxin B. John <maxin.john@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-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 05e31a74eb..f7be61b363 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -1146,7 +1146,7 @@ python do_qa_configure() { if "config.log" in files: if subprocess.call(statement, shell=True) == 0: 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) +Rerun configure task after fixing this.""") if "configure.ac" in files: configs.append(os.path.join(root,"configure.ac")) |