From: Richard Purdie Date: Fri, 9 Sep 2011 17:21:24 +0000 (+0100) Subject: bitbake.conf: Default to explicitly setting the variable to disable pseudo X-Git-Tag: 2011-1~131 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=72252799e8c51a633a231a2cd1fe797b7faae713;p=openembedded-core.git 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. Signed-off-by: Richard Purdie --- 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"