From patchwork Thu Jul 26 13:06:32 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: base.bbclass: Set the NATIVELSBSTRING variable to represent the distro we're running on Date: Thu, 26 Jul 2012 13:06:32 -0000 From: Richard Purdie X-Patchwork-Id: 33125 Message-Id: <1343307992.29991.28.camel@ted> To: openembedded-core This can then be used by the sstate code to mark native and cross packages as being specific to a given distro. Signed-off-by: Richard Purdie --- diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 5fdb96c..59768d0 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -10,7 +10,7 @@ inherit utility-tasks inherit metadata_scm inherit logging -OE_IMPORTS += "os sys time oe.path oe.utils oe.data oe.packagegroup oe.sstatesig" +OE_IMPORTS += "os sys time oe.path oe.utils oe.data oe.packagegroup oe.sstatesig oe.lsb" OE_IMPORTS[type] = "list" def oe_import(d): @@ -31,6 +31,8 @@ def oe_import(d): imported = __import__(toimport) inject(toimport.split(".", 1)[0], imported) + d.setVar("NATIVELSBSTRING", oe.lsb.distro_identifier()) + python oe_import_eh () { if isinstance(e, bb.event.ConfigParsed): oe_import(e.data)