]> code.ossystems Code Review - openembedded-core.git/commitdiff
Revert "base.bbclass: Temporarily disable fakeroot for install/package until other...
authorRichard Purdie <rpurdie@linux.intel.com>
Thu, 19 Aug 2010 21:41:00 +0000 (22:41 +0100)
committerRichard Purdie <rpurdie@linux.intel.com>
Thu, 19 Aug 2010 21:41:00 +0000 (22:41 +0100)
This reverts commit 2225e1214285f0e9a3c0ee2962b3d678c5c05292 and reenables
the functionality now its safe to do so.

meta/classes/base.bbclass

index 2fff8b4438426f96a462134ec2dbb948325be313..6ef2baba71ee40cb01837de7eb52b00814493f04 100644 (file)
@@ -439,10 +439,7 @@ python () {
 
     # If we're building a target package we need to use fakeroot (pseudo)
     # in order to capture permissions, owners, groups and special files
-    
-    # Disabled by RP 17/8/10 until we fix pseudo under python based tasks
-
-    if False and not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):
+    if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):
         deps = (bb.data.getVarFlag('do_install', 'depends', d) or "").split()
         deps.append('virtual/fakeroot-native:do_populate_sysroot')
         bb.data.setVarFlag('do_install', 'depends', " ".join(deps),d)