diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-19 22:41:00 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-19 22:41:00 +0100 |
commit | 657188bfef94fd0e124fb6415051a83e99db7563 (patch) | |
tree | 2bc148ff568fe872a058e655d0e1933e380bd7a0 /meta/classes/base.bbclass | |
parent | 084ec86402bba92418898a4c47667a0574a3b3ee (diff) | |
download | poky-657188bfef94fd0e124fb6415051a83e99db7563.tar.gz |
Revert "base.bbclass: Temporarily disable fakeroot for install/package until other fixes get merged"
This reverts commit 2225e1214285f0e9a3c0ee2962b3d678c5c05292 and reenables
the functionality now its safe to do so.
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r-- | meta/classes/base.bbclass | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 2fff8b4438..6ef2baba71 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -439,10 +439,7 @@ python () { | |||
439 | 439 | ||
440 | # If we're building a target package we need to use fakeroot (pseudo) | 440 | # If we're building a target package we need to use fakeroot (pseudo) |
441 | # in order to capture permissions, owners, groups and special files | 441 | # in order to capture permissions, owners, groups and special files |
442 | 442 | if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): | |
443 | # Disabled by RP 17/8/10 until we fix pseudo under python based tasks | ||
444 | |||
445 | if False and not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): | ||
446 | deps = (bb.data.getVarFlag('do_install', 'depends', d) or "").split() | 443 | deps = (bb.data.getVarFlag('do_install', 'depends', d) or "").split() |
447 | deps.append('virtual/fakeroot-native:do_populate_sysroot') | 444 | deps.append('virtual/fakeroot-native:do_populate_sysroot') |
448 | bb.data.setVarFlag('do_install', 'depends', " ".join(deps),d) | 445 | bb.data.setVarFlag('do_install', 'depends', " ".join(deps),d) |