diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-08-02 20:31:39 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-19 17:57:55 +0100 |
commit | 973a169a35caa4e603fe5abf9ad661f5206a7f07 (patch) | |
tree | ce97e4b6a10c87c23eeb0c47d5d227cc3b2a84be /meta/files | |
parent | 151ee1ace5bc5237d361ffb5c8a152b7d56ff0b9 (diff) | |
download | openembedded-core-contrib-973a169a35caa4e603fe5abf9ad661f5206a7f07.tar.gz |
toolchain-shar-extract.sh: add a space in the end
For a clear look when input.
[YOCTO #8089]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/files')
-rw-r--r-- | meta/files/toolchain-shar-extract.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/files/toolchain-shar-extract.sh b/meta/files/toolchain-shar-extract.sh index 0a33ee8f5df..3a509910314 100644 --- a/meta/files/toolchain-shar-extract.sh +++ b/meta/files/toolchain-shar-extract.sh @@ -92,11 +92,11 @@ fi if [ -e "$target_sdk_dir/environment-setup-@REAL_MULTIMACH_TARGET_SYS@" ]; then echo "The directory \"$target_sdk_dir\" already contains a SDK for this architecture." - printf "If you continue, existing files will be overwritten! Proceed[y/N]?" + printf "If you continue, existing files will be overwritten! Proceed[y/N]? " default_answer="n" else - printf "You are about to install the SDK to \"$target_sdk_dir\". Proceed[Y/n]?" + printf "You are about to install the SDK to \"$target_sdk_dir\". Proceed[Y/n]? " default_answer="y" fi |