]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
toolchain-shar-extract.sh: fix path in example ChenQi/toolchain-shar-extract
authorChen Qi <Qi.Chen@windriver.com>
Tue, 13 Oct 2015 02:48:39 +0000 (10:48 +0800)
committerChen Qi <Qi.Chen@windriver.com>
Tue, 13 Oct 2015 03:05:58 +0000 (11:05 +0800)
$env_setup_script already contains $target_sdk_dir.
Fix the path in the example.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
meta/files/toolchain-shar-extract.sh

index 2ffc2d1c07deade56cf7364104544b45b109197a..2eeb2903c8d9473910aec0042c7dd747f7689276 100644 (file)
@@ -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