diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2015-04-29 23:30:15 +0200 |
---|---|---|
committer | Zheng Bao <zheng.bao@amd.com> | 2015-04-30 04:12:19 +0200 |
commit | ae5ab604d51815bfed964017fad815c002aca9fe (patch) | |
tree | f2edc1c7a70369b590f0ad004af9ef8f32377170 | |
parent | b8179087afea63bc10c950eb3406b4fc94a3997f (diff) | |
download | coreboot-ae5ab604d51815bfed964017fad815c002aca9fe.tar.xz |
crossgcc: improve error message on missing tools
People were confused about the 'missing toolchain', so
improve the error message.
Change-Id: Icaee338aeedce2255bcfdafe5407c9df02ad9c4a
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/10036
Tested-by: build bot (Jenkins)
Reviewed-by: Idwer Vollering <vidwer@gmail.com>
-rwxr-xr-x | util/crossgcc/buildgcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index f2faefb56c..a29a338d9c 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -125,7 +125,7 @@ searchtool() fi fi fi - printf "${RED}ERROR:${red} Missing toolchain: $1${NC}\n" >&2 + printf "${RED}ERROR:${red} Missing tool: Please install $1 (eg using your OS packaging system)${NC}\n" >&2 [ -z "$3" ] && exit 1 false } |