summaryrefslogtreecommitdiffstats
path: root/meta/files
diff options
context:
space:
mode:
authorChangqing Li <changqing.li@windriver.com>2020-10-16 10:40:25 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-10-27 22:42:19 +0000
commit7bd122dea4b4222660571004162cef8d9741e535 (patch)
treeed4425fb48c454fc75d04696274cbc92dc50848c /meta/files
parent3f15d1ae824a886d319c63a209bc1e7ae9b48e17 (diff)
downloadpoky-7bd122dea4b4222660571004162cef8d9741e535.tar.gz
toolchain-shar-extract.sh: don't print useless info
useless info "gcc: command not found" is printed when run buildtools-extended on system without gcc. (From OE-Core rev: 1bdaf40c02791fd2c22c19414f554a3c8d26e476) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 289a58ddbbd8bb3f5ae0d3421cfe8e75b60b0fbe) Signed-off-by: Steve Sakoman <steve@sakoman.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 04527f891f..bea6d4189a 100644
--- a/meta/files/toolchain-shar-extract.sh
+++ b/meta/files/toolchain-shar-extract.sh
@@ -26,7 +26,7 @@ tweakpath /sbin
26INST_ARCH=$(uname -m | sed -e "s/i[3-6]86/ix86/" -e "s/x86[-_]64/x86_64/") 26INST_ARCH=$(uname -m | sed -e "s/i[3-6]86/ix86/" -e "s/x86[-_]64/x86_64/")
27SDK_ARCH=$(echo @SDK_ARCH@ | sed -e "s/i[3-6]86/ix86/" -e "s/x86[-_]64/x86_64/") 27SDK_ARCH=$(echo @SDK_ARCH@ | sed -e "s/i[3-6]86/ix86/" -e "s/x86[-_]64/x86_64/")
28 28
29INST_GCC_VER=$(gcc --version | sed -ne 's/.* \([0-9]\+\.[0-9]\+\)\.[0-9]\+.*/\1/p') 29INST_GCC_VER=$(gcc --version 2>/dev/null | sed -ne 's/.* \([0-9]\+\.[0-9]\+\)\.[0-9]\+.*/\1/p')
30SDK_GCC_VER='@SDK_GCC_VER@' 30SDK_GCC_VER='@SDK_GCC_VER@'
31 31
32verlte () { 32verlte () {