diff options
author | Alexey Neyman <stilor@att.net> | 2016-12-13 22:19:43 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2016-12-18 10:14:40 -0800 |
commit | b30e779d8e6ee929c133d07f2da7b7661436ad89 (patch) | |
tree | 47a95abf1ecfbd46a3ba01815b9126c06cd0a5d8 /scripts/functions | |
parent | cccb8d84817bca1cf1d33cfdb5932f361437c229 (diff) | |
download | crosstool-ng-b30e779d8e6ee929c133d07f2da7b7661436ad89.tar.gz crosstool-ng-b30e779d8e6ee929c133d07f2da7b7661436ad89.tar.bz2 crosstool-ng-b30e779d8e6ee929c133d07f2da7b7661436ad89.zip |
Catch more make errors.
Some errors from make(1) do not include a file reference in brackets.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index 5337962a..f687504d 100644 --- a/scripts/functions +++ b/scripts/functions @@ -193,7 +193,7 @@ CT_DoLog() { y,*"warning:"*) cur_L=WARN; cur_l=${CT_LOG_LEVEL_WARN};; y,*"WARNING:"*) cur_L=WARN; cur_l=${CT_LOG_LEVEL_WARN};; *"error:"*) cur_L=ERROR; cur_l=${CT_LOG_LEVEL_ERROR};; - *"make["*"]: *** ["*) cur_L=ERROR; cur_l=${CT_LOG_LEVEL_ERROR};; + *"make["*"]: ***"*) cur_L=ERROR; cur_l=${CT_LOG_LEVEL_ERROR};; *) cur_L="${LEVEL}"; cur_l="${level}";; esac # There will always be a log file (stdout, fd #1), be it /dev/null |