From 936e2868bb9973213630477ab9c880dbdf4aac09 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Thu, 18 Oct 2012 10:49:59 +0100 Subject: sstate: when warnings about sysroot overwrites, say what the recipe was Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/classes/sstate.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/classes/sstate.bbclass') 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") -- cgit 1.2.3-korg