summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorScott Garman <scott.a.garman@intel.com>2011-05-19 10:35:40 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-06 15:58:41 +0100
commite3f56c05e5a168075dc0d6a4cd3cfd8239b745ed (patch)
tree5509108ee31388147a340ab3114e66fb91e2186c /meta/conf/bitbake.conf
parent133691ce920e7ff39dbebe80227e58a7aac9e3d1 (diff)
downloadpoky-e3f56c05e5a168075dc0d6a4cd3cfd8239b745ed.tar.gz
bitbake.conf: set PSEUDO_PASSWD within FAKEROOTENV
PSEUDO_PASSWD needs to point to the directory where passwd and group files are kept. This will allow pseudo to use those users and groups to change file ownership. (From OE-Core rev: ada60e40293f78f974f641de5d3356b02bbeae4c) Signed-off-by: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index de943161d7..38c5d2c258 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -547,7 +547,7 @@ SRC_URI = "file://${FILE}"
547 547
548# Use pseudo as the fakeroot implementation 548# Use pseudo as the fakeroot implementation
549PSEUDO_LOCALSTATEDIR ?= "${WORKDIR}/pseudo/" 549PSEUDO_LOCALSTATEDIR ?= "${WORKDIR}/pseudo/"
550FAKEROOTENV = "PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} PSEUDO_LOCALSTATEDIR=${PSEUDO_LOCALSTATEDIR} PSEUDO_NOSYMLINKEXP=1 PSEUDO_DISABLED=0" 550FAKEROOTENV = "PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} PSEUDO_LOCALSTATEDIR=${PSEUDO_LOCALSTATEDIR} PSEUDO_PASSWD=${STAGING_DIR_TARGET}/etc PSEUDO_NOSYMLINKEXP=1 PSEUDO_DISABLED=0"
551FAKEROOTDIRS = "${PSEUDO_LOCALSTATEDIR}" 551FAKEROOTDIRS = "${PSEUDO_LOCALSTATEDIR}"
552PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native" 552PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native"
553 553