diff options
author | Mark Hatle <mhatle@windriver.com> | 2010-07-22 10:37:30 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-24 00:50:10 +0100 |
commit | 62540b2a15558f16c1c97b5221fa3da6f48604d6 (patch) | |
tree | f4824978ffcd031bbe1518ff9ebe0e6234b17eb4 /meta/conf | |
parent | d668b80e866c8bb512a10bad22b0080d7afe3453 (diff) | |
download | poky-62540b2a15558f16c1c97b5221fa3da6f48604d6.tar.gz |
meta/conf/bitbake.conf: Configure pseudo to not expand symlinks
When using the fake chroot ability of pseudo, it will expand absolute
symlinks to their full non-fake path by default. The simple change disables
that behavior, as it is undesired when generating a rootfs.
Signed-off-by: Mark Hatle <mhatle@windriver.com>
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 057a213c96..0e3934b598 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -530,7 +530,7 @@ SRC_URI = "file://${FILE}" | |||
530 | # default is fakeroot but in Poky we use pseudo | 530 | # default is fakeroot but in Poky we use pseudo |
531 | # this is hopefully only temporary, to work around the database becoming corrupt | 531 | # this is hopefully only temporary, to work around the database becoming corrupt |
532 | PSEUDO_DATADIR ?= "${WORKDIR}/pseudo/" | 532 | PSEUDO_DATADIR ?= "${WORKDIR}/pseudo/" |
533 | FAKEROOT = "PSEUDO_DATADIR=${PSEUDO_DATADIR} PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} pseudo" | 533 | FAKEROOT = "PSEUDO_DATADIR=${PSEUDO_DATADIR} PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} PSEUDO_NOSYMLINKEXP=1 pseudo" |
534 | PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native" | 534 | PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native" |
535 | 535 | ||
536 | 536 | ||