From f0aa69296f4c1d4214f9dbea236b0ed330b8154b Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Fri, 5 Apr 2013 18:59:46 +0200 Subject: oe-init-build-env: Make it use the correct $OEROOT with zsh Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie --- oe-init-build-env | 2 ++ 1 file changed, 2 insertions(+) diff --git a/oe-init-build-env b/oe-init-build-env index 67eddcd295..68af7b5193 100755 --- a/oe-init-build-env +++ b/oe-init-build-env @@ -30,6 +30,8 @@ if [ -z "$ZSH_NAME" ] && [ "x$0" = "x./oe-init-build-env" ]; then else if [ -n "$BASH_SOURCE" ]; then OEROOT="`dirname $BASH_SOURCE`" + elif [ -n "$ZSH_NAME" ]; then + OEROOT="`dirname $0`" else OEROOT="`pwd`" fi -- cgit 1.2.3-korg