aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2015-10-13 10:48:39 +0800
committerChen Qi <Qi.Chen@windriver.com>2015-10-13 11:05:58 +0800
commit0ac22442d4b0be5e3d2a3725fca10279c73eabd4 (patch)
tree83b76d28c95d04698ade8c8e8b7440d446abca02
parente42d8eff9eed7d1454b4f331d96dcee6dea232df (diff)
downloadopenembedded-core-contrib-ChenQi/toolchain-shar-extract.tar.gz
toolchain-shar-extract.sh: fix path in exampleChenQi/toolchain-shar-extract
$env_setup_script already contains $target_sdk_dir. Fix the path in the example. Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
-rw-r--r--meta/files/toolchain-shar-extract.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/files/toolchain-shar-extract.sh b/meta/files/toolchain-shar-extract.sh
index 2ffc2d1c07..2eeb2903c8 100644
--- a/meta/files/toolchain-shar-extract.sh
+++ b/meta/files/toolchain-shar-extract.sh
@@ -183,7 +183,7 @@ fi
echo "SDK has been successfully set up and is ready to be used."
echo "Each time you wish to use the SDK in a new shell session, you need to source the environment setup script e.g."
for env_setup_script in `ls $target_sdk_dir/environment-setup-*`; do
- echo " \$ . $target_sdk_dir/$env_setup_script"
+ echo " \$ . $env_setup_script"
done
exit 0