1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

base.bbclass: Temporarily disable fakeroot for install/package until other fixes get merged

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2010-08-17 12:13:31 +01:00
parent a4aaaee39d
commit 2225e12142
+4 -1
View File
@@ -457,7 +457,10 @@ python () {
# If we're building a target package we need to use fakeroot (pseudo)
# in order to capture permissions, owners, groups and special files
if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):
# 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):
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)