From: Otavio Salvador Date: Tue, 18 Jan 2011 00:12:38 +0000 (-0200) Subject: poky-init-build-env: unset BBPATH X-Git-Tag: 2011-1~2874 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=740ea68258282c459b66bbed550e6347fb8e83a3;p=openembedded-core.git poky-init-build-env: unset BBPATH When using OpenEmbedded and Yocto I had it previously set to OE and this made bitbake to get confused. This was difficult to figure out and then it seems safer and cleaner if the script unset it to avoid this confusing behaviour. Signed-off-by: Otavio Salvador Signed-off-by: Richard Purdie --- diff --git a/poky-init-build-env b/poky-init-build-env index 90151fb7bb..82590f2012 100755 --- a/poky-init-build-env +++ b/poky-init-build-env @@ -38,6 +38,7 @@ else . $OEROOT/scripts/poky-env-internal $OEROOT/scripts/poky-setup-builddir unset OEROOT + unset BBPATH [ -n "$BUILDDIR" ] && cd $BUILDDIR fi