diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-12-28 10:49:17 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-21 17:49:17 +0000 |
commit | 3ef80db73c69b8a731beb8ea4921357a041564e5 (patch) | |
tree | 600ace9c046f90b42a5d2b69aae9565b4ce08969 | |
parent | 66e6837b536859bcf940380cfcdf50670790d889 (diff) | |
download | openembedded-core-3ef80db73c69b8a731beb8ea4921357a041564e5.tar.gz openembedded-core-3ef80db73c69b8a731beb8ea4921357a041564e5.tar.bz2 openembedded-core-3ef80db73c69b8a731beb8ea4921357a041564e5.tar.xz openembedded-core-3ef80db73c69b8a731beb8ea4921357a041564e5.zip |
poky-init-build-env: unbork for zsh
Signed-off-by: Chris Larson <chris_larson@mentor.com>
-rwxr-xr-x | poky-init-build-env | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poky-init-build-env b/poky-init-build-env index 82590f201..3c8aa5341 100755 --- a/poky-init-build-env +++ b/poky-init-build-env @@ -25,7 +25,7 @@ # being sourced. To workaround the shell limitation use "set arg1" prior # to sourcing this script. # -if [ "x$0" = "x./poky-init-build-env" ]; then +if [ -z "$ZSH_NAME" ] && [ "x$0" = "x./poky-init-build-env" ]; then echo "Error: This script needs to be sourced. Please run as '. ./poky-init-build-env'" else if [ -n "$BASH_SOURCE" ]; then |