diff options
author | Scott Garman <scott.a.garman@intel.com> | 2011-05-19 10:35:40 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-06 15:58:41 +0100 |
commit | e3f56c05e5a168075dc0d6a4cd3cfd8239b745ed (patch) | |
tree | 5509108ee31388147a340ab3114e66fb91e2186c /meta/conf | |
parent | 133691ce920e7ff39dbebe80227e58a7aac9e3d1 (diff) | |
download | poky-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')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
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 |
549 | PSEUDO_LOCALSTATEDIR ?= "${WORKDIR}/pseudo/" | 549 | PSEUDO_LOCALSTATEDIR ?= "${WORKDIR}/pseudo/" |
550 | FAKEROOTENV = "PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} PSEUDO_LOCALSTATEDIR=${PSEUDO_LOCALSTATEDIR} PSEUDO_NOSYMLINKEXP=1 PSEUDO_DISABLED=0" | 550 | FAKEROOTENV = "PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} PSEUDO_LOCALSTATEDIR=${PSEUDO_LOCALSTATEDIR} PSEUDO_PASSWD=${STAGING_DIR_TARGET}/etc PSEUDO_NOSYMLINKEXP=1 PSEUDO_DISABLED=0" |
551 | FAKEROOTDIRS = "${PSEUDO_LOCALSTATEDIR}" | 551 | FAKEROOTDIRS = "${PSEUDO_LOCALSTATEDIR}" |
552 | PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native" | 552 | PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native" |
553 | 553 | ||