diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-25 19:36:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-25 19:36:45 +0100 |
commit | f907b3a5b414aa53ce8271763f04532d7127006f (patch) | |
tree | ba8d12c8e42e1edf0b9d477a9bd1bf82585e16e2 | |
parent | 188545ba82119d75f80dde322a73712ce1f0f762 (diff) | |
download | openembedded-core-f907b3a5b414aa53ce8271763f04532d7127006f.tar.gz openembedded-core-f907b3a5b414aa53ce8271763f04532d7127006f.tar.bz2 openembedded-core-f907b3a5b414aa53ce8271763f04532d7127006f.zip |
insane: Use a warning for FILEEXTRAPATHS issues for now
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 09d9fc1508..55bfaf2d60 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -1058,7 +1058,7 @@ python () { msg += "in your bbappend file\n\n" msg += "Your incorrect assignment is:\n" msg += "%s\n" % extrapaths - bb.fatal(msg) + bb.warn(msg) if d.getVar('do_stage', True) is not None: bb.fatal("Legacy staging found for %s as it has a do_stage function. This will need conversion to a do_install or often simply removal to work with OE-core" % d.getVar("FILE", True)) |