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

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

This reverts commit 2225e12142 and reenables
the functionality now its safe to do so.
This commit is contained in:
Richard Purdie
2010-08-19 22:41:00 +01:00
parent 084ec86402
commit 657188bfef
+1 -4
View 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)