diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-12-14 16:36:45 -0800 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-03-02 18:38:32 +0100 |
commit | ed5642234ada914d057c31e77c322932e2e0e641 (patch) | |
tree | 71269352659c2c85162697960912362eae7228e3 /util/abuild | |
parent | c77e0419098f3ce241922d60181727ee676c2594 (diff) |
abuild: Use 12 lines of context for errors
The current default of 6 lines leaves us with no context
about the actual error:
*** ERROR: 3 warnings encountered, and warnings are errors.
coreboot-gerrit/util/kconfig/Makefile:38: recipe for target 'oldconfig' failed
make[1]: *** [oldconfig] Error 1
make[1]: Leaving directory 'coreboot-gerrit'
Change-Id: I67e7d740e7b3b1c66005dc1bf50557a20bc15428
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: https://review.coreboot.org/12720
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/abuild')
-rwxr-xr-x | util/abuild/abuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild index cddcb57648..ffa16b53f1 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -40,7 +40,7 @@ if [ -d "$XGCCPATH" ] && [[ ":$PATH:" != *":$XGCCPATH:"* ]]; then fi # Lines of error context to be printed in FAILURE case -CONTEXT=6 +CONTEXT=12 # Configure-only mode configureonly=0 |