summaryrefslogtreecommitdiffstats
path: root/meta/files
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2015-10-15 10:00:40 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-19 17:57:58 +0100
commit50099663e0cfb761c9ce0a370df8822d8f309b81 (patch)
treed68c908f90660c546e0f2d7336c3bc002584781b /meta/files
parentae7703f21aa269e1c5659f138702b5a195302282 (diff)
downloadpoky-50099663e0cfb761c9ce0a370df8822d8f309b81.tar.gz
toolchain-shar-extract.sh: provide proper path for env_setup_script
The toolchain install script suggest the user to source env_setup_script from wrong path now. eg: " Each time you wish to use the SDK in a new shell session, you need to source the environment setup script e.g. $ . /opt/poky/2.0//opt/poky/2.0/environment-setup-armv5e-poky-linux-gnueabi " fix it. (From OE-Core rev: b388468deda8d81df80d1509226196a5390183a8) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/files')
-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
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."
185for env_setup_script in `ls $target_sdk_dir/environment-setup-*`; do 185for env_setup_script in `ls $target_sdk_dir/environment-setup-*`; do
186 echo " \$ . $target_sdk_dir/$env_setup_script" 186 echo " \$ . $env_setup_script"
187done 187done
188 188
189exit 0 189exit 0