summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorMark Hatle <mhatle@windriver.com>2010-07-22 10:37:30 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-24 00:50:10 +0100
commit62540b2a15558f16c1c97b5221fa3da6f48604d6 (patch)
treef4824978ffcd031bbe1518ff9ebe0e6234b17eb4 /meta/conf/bitbake.conf
parentd668b80e866c8bb512a10bad22b0080d7afe3453 (diff)
downloadpoky-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/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 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
532PSEUDO_DATADIR ?= "${WORKDIR}/pseudo/" 532PSEUDO_DATADIR ?= "${WORKDIR}/pseudo/"
533FAKEROOT = "PSEUDO_DATADIR=${PSEUDO_DATADIR} PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} pseudo" 533FAKEROOT = "PSEUDO_DATADIR=${PSEUDO_DATADIR} PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} PSEUDO_NOSYMLINKEXP=1 pseudo"
534PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native" 534PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native"
535 535
536 536