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:13:50 +0100 |
commit | 3bf1848cb747027bd0d281620a008f4d5ce8b6f1 (patch) | |
tree | 2321ef84c8efaf79030fc266a4a3806a8f776c81 /meta/classes | |
parent | a008df240caf179288dd229961b8b4b20a3311cf (diff) | |
download | poky-3bf1848cb747027bd0d281620a008f4d5ce8b6f1.tar.gz |
sstate: when warnings about sysroot overwrites, say what the recipe was
(From OE-Core rev: 936e2868bb9973213630477ab9c880dbdf4aac09)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-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): | |||
165 | if realmatch: | 165 | if realmatch: |
166 | match.append(f) | 166 | match.append(f) |
167 | if match: | 167 | if match: |
168 | 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)) | 168 | 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))) |
169 | 169 | ||
170 | # Write out the manifest | 170 | # Write out the manifest |
171 | f = open(manifest, "w") | 171 | f = open(manifest, "w") |