diff options
author | Todor Minchev <todor.minchev@linux.intel.com> | 2016-10-04 08:47:11 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-11 22:55:56 +0100 |
commit | dc3964f1c3457cc1265d1ed0095c0c491a97b47f (patch) | |
tree | f143e83d391b568c89861bb3ea05765f5d826f0f /meta | |
parent | 806a910927f479207d47b06c20a0497e91203266 (diff) | |
download | openembedded-core-dc3964f1c3457cc1265d1ed0095c0c491a97b47f.tar.gz openembedded-core-dc3964f1c3457cc1265d1ed0095c0c491a97b47f.tar.bz2 openembedded-core-dc3964f1c3457cc1265d1ed0095c0c491a97b47f.zip |
sdk-installer: Fix unclear SDK installer message
When the host and the SDK architectures are incompatible the SDK
installer outputs an incomplete error message "Error: Installation
machine not supported!". This commit adds a more verbose error
message e.g "Error: Incompatible SDK installer! Your host is i686
and this SDK was built for x86_64 hosts."
Signed-off-by: Todor Minchev <todor.minchev@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/files/toolchain-shar-extract.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/files/toolchain-shar-extract.sh b/meta/files/toolchain-shar-extract.sh index 66c017f50d..9295ddc869 100644 --- a/meta/files/toolchain-shar-extract.sh +++ b/meta/files/toolchain-shar-extract.sh @@ -28,7 +28,7 @@ fi if [ "$INST_ARCH" != "$SDK_ARCH" ]; then # Allow for installation of ix86 SDK on x86_64 host if [ "$INST_ARCH" != x86_64 -o "$SDK_ARCH" != ix86 ]; then - echo "Error: Installation machine not supported!" + echo "Error: Incompatible SDK installer! Your host is $INST_ARCH and this SDK was built for $SDK_ARCH hosts." exit 1 fi fi |