Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12720
-gerrit
commit 1d078bf6431246f2e06ca6bc4edca50ac9b88304 Author: Stefan Reinauer stefan.reinauer@coreboot.org Date: Mon Dec 14 16:36:45 2015 -0800
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 --- util/abuild/abuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/abuild/abuild b/util/abuild/abuild index cddcb57..ffa16b5 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