diff options
author | Idwer Vollering <vidwer@gmail.com> | 2017-08-15 00:53:13 +0200 |
---|---|---|
committer | Idwer Vollering <vidwer@gmail.com> | 2017-08-15 20:05:21 +0000 |
commit | e2ef3cf8e3ba130fe7388c905fc06aa3ff8b0506 (patch) | |
tree | 17b9a48641858a8ae6b544640b0b2740ff6de8c5 /util/crossgcc | |
parent | efa606b77b93254d0e378ceab851753886f5efec (diff) |
buildgcc: surround *.log with apostrophes when build fails
Apparently the script's output text is unclear.
Emphasize the file name, keeping the dot to close the sentence.
Change-Id: I1f214b71629eda5fc54e5671ce63e58948343656
Signed-off-by: Idwer Vollering <vidwer@gmail.com>
Reviewed-on: https://review.coreboot.org/21012
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'util/crossgcc')
-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 724a4cb5b3..dcfb9a6b45 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -411,7 +411,7 @@ generic_build() if [ ! -f "$builddir/.failed" ]; then touch "$success"; else - printf "${RED}failed${NC}. Check $builddir/build.log.\n" + printf "${RED}failed${NC}. Check '$builddir/build.log'.\n" exit 1 fi printf "${green}ok${NC}\n" |