From 27b4d31b65946569821e709a8d5d44fe16fe484a Mon Sep 17 00:00:00 2001 From: Matthias Baesken Date: Wed, 17 Jul 2019 09:58:42 +0200 Subject: [PATCH] 8227834: build.log output from failing commands : include the hs_error file path in case of crashes in build Reviewed-by: tbell --- make/InitSupport.gmk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/InitSupport.gmk b/make/InitSupport.gmk index 2f354545e9e..4484cffe211 100644 --- a/make/InitSupport.gmk +++ b/make/InitSupport.gmk @@ -424,8 +424,8 @@ else # $(HAS_SPEC)=true $(if $(filter all, $(LOG_REPORT)), \ $(GREP) -v -e "^Note: including file:" < $(logfile) || true $(NEWLINE) \ , \ - ($(GREP) -v -e "^Note: including file:" < $(logfile) || true) | $(HEAD) -n 12 $(NEWLINE) \ - if test `$(WC) -l < $(logfile)` -gt 12; then \ + ($(GREP) -v -e "^Note: including file:" < $(logfile) || true) | $(HEAD) -n 15 $(NEWLINE) \ + if test `$(WC) -l < $(logfile)` -gt 15; then \ $(ECHO) " ... (rest of output omitted)" ; \ fi $(NEWLINE) \ ) \