summaryrefslogtreecommitdiffstats
path: root/meta/files/toolchain-shar-extract.sh
diff options
context:
space:
mode:
Diffstat (limited to 'meta/files/toolchain-shar-extract.sh')
-rw-r--r--meta/files/toolchain-shar-extract.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/files/toolchain-shar-extract.sh b/meta/files/toolchain-shar-extract.sh
index dd92d0eb7f..2ffc2d1c07 100644
--- a/meta/files/toolchain-shar-extract.sh
+++ b/meta/files/toolchain-shar-extract.sh
@@ -182,7 +182,9 @@ fi
182 182
183echo "SDK has been successfully set up and is ready to be used." 183echo "SDK has been successfully set up and is ready to be used."
184echo "Each time you wish to use the SDK in a new shell session, you need to source the environment setup script e.g." 184echo "Each time you wish to use the SDK in a new shell session, you need to source the environment setup script e.g."
185echo " \$ . $target_sdk_dir/environment-setup-@REAL_MULTIMACH_TARGET_SYS@" 185for env_setup_script in `ls $target_sdk_dir/environment-setup-*`; do
186 echo " \$ . $target_sdk_dir/$env_setup_script"
187done
186 188
187exit 0 189exit 0
188 190