From 740ea68258282c459b66bbed550e6347fb8e83a3 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Mon, 17 Jan 2011 22:12:38 -0200 Subject: 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 --- poky-init-build-env | 1 + 1 file changed, 1 insertion(+) (limited to 'poky-init-build-env') 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 -- cgit 1.2.3-korg