From patchwork Tue Oct 2 22:00:01 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: sstate: Add detail to shared area warning Date: Tue, 02 Oct 2012 22:00:01 -0000 From: Saul Wold X-Patchwork-Id: 37637 Message-Id: <1349215201-30117-1-git-send-email-sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org [YOCTO #3191] Signed-off-by: Saul Wold --- meta/classes/sstate.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 03f083e..ca50483 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -158,7 +158,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 %s recipe is trying to install files into a shared area when those files already exist (please fix %s). Those files are:\n %s" % (d.getVar('PN', True), d.getVar('FILE', True), "\n ".join(match))) # Write out the manifest f = open(manifest, "w")