diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-13 22:26:46 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-13 22:26:46 +0800 |
commit | ddbf5e9c48afdeefeaec120a02d43536f5fd1ce1 (patch) | |
tree | 530baf83cd731f997c862651fe1bff76e1157d39 | |
parent | e445fcf5dddf88a7cff126fffd8b71fba0f20ce8 (diff) | |
download | poky-ddbf5e9c48afdeefeaec120a02d43536f5fd1ce1.tar.gz |
poky-init-build-env: Fix to show the error message with simple sh based shells
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rwxr-xr-x | poky-init-build-env | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/poky-init-build-env b/poky-init-build-env index 0f5e684a52..075070370b 100755 --- a/poky-init-build-env +++ b/poky-init-build-env | |||
@@ -19,10 +19,10 @@ | |||
19 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 19 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
20 | 20 | ||
21 | 21 | ||
22 | if test x"$0" = x"./poky-init-build-env"; then | 22 | if [ "x$0" = "x./poky-init-build-env" ]; then |
23 | echo "Error: Run via '. ./poky-init-build-env'" | 23 | echo "Error: This script needs to be sourced. Please run as '. ./poky-init-build-env'" |
24 | elif test x"$BASH_SOURCE" = x; then | 24 | elif [ "x$BASH_SOURCE" = "x" ]; then |
25 | echo "Error: you are not running a Bash shell, please use Bash or add support for your shell to the init scripts" | 25 | echo "Error: You are not running a Bash shell. Please use Bash or add support for your shell to the init scripts" |
26 | else | 26 | else |
27 | . `dirname $BASH_SOURCE`/scripts/poky-env-internal | 27 | . `dirname $BASH_SOURCE`/scripts/poky-env-internal |
28 | fi | 28 | fi |