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>
This commit is contained in:
Mark Hatle 2010-07-22 10:37:30 -07:00 committed by Richard Purdie
parent d668b80e86
commit 62540b2a15
1 changed files with 1 additions and 1 deletions

View File

@ -530,7 +530,7 @@ SRC_URI = "file://${FILE}"
# default is fakeroot but in Poky we use pseudo
# this is hopefully only temporary, to work around the database becoming corrupt
PSEUDO_DATADIR ?= "${WORKDIR}/pseudo/"
FAKEROOT = "PSEUDO_DATADIR=${PSEUDO_DATADIR} PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} pseudo"
FAKEROOT = "PSEUDO_DATADIR=${PSEUDO_DATADIR} PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} PSEUDO_NOSYMLINKEXP=1 pseudo"
PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native"