[oe-commits] Richard Purdie : base.bbclass: Set the NATIVELSBSTRING variable to represent the distro we're running on

git at git.openembedded.org git at git.openembedded.org
Sat Jul 28 08:22:10 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: 8556eb98be8bd9f02ee11a0d8a889c1895c86460
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=8556eb98be8bd9f02ee11a0d8a889c1895c86460

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Thu Jul 26 14:06:32 2012 +0100

base.bbclass: Set the NATIVELSBSTRING variable to represent the distro we're running on

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 <richard.purdie at linuxfoundation.org>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/classes/base.bbclass |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index a57bd59..e15fa26 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):
@@ -34,6 +34,7 @@ def oe_import(d):
 python oe_import_eh () {
     if isinstance(e, bb.event.ConfigParsed):
         oe_import(e.data)
+        e.data.setVar("NATIVELSBSTRING", oe.lsb.distro_identifier())
 }
 
 addhandler oe_import_eh





More information about the Openembedded-commits mailing list