diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-17 12:13:31 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-17 12:13:31 +0100 |
commit | 2225e1214285f0e9a3c0ee2962b3d678c5c05292 (patch) | |
tree | 021b0f75ac6fe7ce0fd9d0f6753b6cdb54602667 /meta/classes/base.bbclass | |
parent | a4aaaee39de6b603e847c884d71f05cd7bbce9fe (diff) | |
download | poky-2225e1214285f0e9a3c0ee2962b3d678c5c05292.tar.gz |
base.bbclass: Temporarily disable fakeroot for install/package until other fixes get merged
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r-- | meta/classes/base.bbclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 71a8c8b176..3805dd3506 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -457,7 +457,10 @@ python () { | |||
457 | 457 | ||
458 | # If we're building a target package we need to use fakeroot (pseudo) | 458 | # If we're building a target package we need to use fakeroot (pseudo) |
459 | # in order to capture permissions, owners, groups and special files | 459 | # in order to capture permissions, owners, groups and special files |
460 | if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): | 460 | |
461 | # Disabled by RP 17/8/10 until we fix pseudo under python based tasks | ||
462 | |||
463 | if False and not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): | ||
461 | deps = (bb.data.getVarFlag('do_install', 'depends', d) or "").split() | 464 | deps = (bb.data.getVarFlag('do_install', 'depends', d) or "").split() |
462 | deps.append('virtual/fakeroot-native:do_populate_sysroot') | 465 | deps.append('virtual/fakeroot-native:do_populate_sysroot') |
463 | bb.data.setVarFlag('do_install', 'depends', " ".join(deps),d) | 466 | bb.data.setVarFlag('do_install', 'depends', " ".join(deps),d) |