From: Chen Qi Date: Tue, 13 Oct 2015 02:48:39 +0000 (+0800) Subject: toolchain-shar-extract.sh: fix path in example X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2FChenQi%2Ftoolchain-shar-extract;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git toolchain-shar-extract.sh: fix path in example $env_setup_script already contains $target_sdk_dir. Fix the path in the example. Signed-off-by: Chen Qi --- diff --git a/meta/files/toolchain-shar-extract.sh b/meta/files/toolchain-shar-extract.sh index 2ffc2d1c07d..2eeb2903c8d 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