From c505815742328a5bfe4bd3d3eff5e671c1be222c Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 9 Sep 2011 18:21:24 +0100 Subject: bitbake.conf: Default to explicitly setting the variable to disable pseudo If we don't do this, sometimes pseudo can end up enabling itself when it isn't required. Setting this value into the environment explicitly ensures that does not happen. (From OE-Core rev: 72252799e8c51a633a231a2cd1fe797b7faae713) Signed-off-by: Richard Purdie --- meta/conf/bitbake.conf | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta/conf') diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index a68be0786b..b7bcc23890 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -572,6 +572,10 @@ SRC_URI = "file://${FILE}" # Use pseudo as the fakeroot implementation PSEUDO_LOCALSTATEDIR ?= "${WORKDIR}/pseudo/" +export PSEUDO_DISABLED = "1" +#export PSEUDO_PREFIX = "${STAGING_DIR_NATIVE}${prefix_native}" +#export PSEUDO_BINDIR = "${STAGING_DIR_NATIVE}${bindir_native}" +#export PSEUDO_LIBDIR = "${STAGING_DIR_NATIVE}$PSEUDOBINDIR/../lib/pseudo/lib FAKEROOTENV = "PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} PSEUDO_LOCALSTATEDIR=${PSEUDO_LOCALSTATEDIR} PSEUDO_PASSWD=${STAGING_DIR_TARGET} PSEUDO_NOSYMLINKEXP=1 PSEUDO_DISABLED=0" FAKEROOTDIRS = "${PSEUDO_LOCALSTATEDIR}" PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native" -- cgit v1.2.3-54-g00ecf