diff options
author | Ross Burton <ross.burton@intel.com> | 2012-10-18 10:49:59 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-18 12:07:43 +0100 |
commit | 936e2868bb9973213630477ab9c880dbdf4aac09 (patch) | |
tree | 51d1f8441201979f684a593e533cb6487318c6b6 /meta/classes/sstate.bbclass | |
parent | 2ee9601ae590b2964d1c44b131188a80cc5198a9 (diff) | |
download | openembedded-core-936e2868bb9973213630477ab9c880dbdf4aac09.tar.gz openembedded-core-936e2868bb9973213630477ab9c880dbdf4aac09.tar.bz2 openembedded-core-936e2868bb9973213630477ab9c880dbdf4aac09.zip |
sstate: when warnings about sysroot overwrites, say what the recipe was
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r-- | meta/classes/sstate.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index b60c766093..d2a120b11b 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -165,7 +165,7 @@ def sstate_install(ss, d): if realmatch: match.append(f) if match: - bb.warn("The recipe is trying to install files into a shared area when those files already exist. Those files are:\n %s" % "\n ".join(match)) + bb.warn("The recipe %s is trying to install files into a shared area when those files already exist. Those files are:\n %s" % (d.getVar("PN", True), "\n ".join(match))) # Write out the manifest f = open(manifest, "w") |