From patchwork Thu Feb 7 23:54:23 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [WR,2/2] Add directory information to the pkgdata files Date: Thu, 07 Feb 2013 23:54:23 -0000 From: Mark Hatle X-Patchwork-Id: 44263 Message-Id: <1360281263-23608-3-git-send-email-mark.hatle@windriver.com> To: [ CQID: WIND00401773 ] Add S(ource) and B(uild) directory information to the recipe pkgdata files. This allows external tools to find the appropriate information, and be able to easily access the corresponding sources and build directories. Signed-off-by: Mark Hatle --- meta/classes/package.bbclass | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index a1cd0c2..f26da28 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -1098,6 +1098,8 @@ python emit_pkgdata() { data_file = pkgdatadir + d.expand("/${PN}" ) f = open(data_file, 'w') + f.write("S: %s\n" % d.expand("${S}")) + f.write("B: %s\n" % d.expand("${B}")) f.write("PACKAGES: %s\n" % packages) f.close()