# HG changeset patch # User Markus Mützel # Date 1593851502 -7200 # Node ID 10d9403ec6bc9c633c824864ece28ad4f7192721 # Parent e60d29a560aba49a36f35dea30003868e38462d6 Show longer tail of the package build log on build errors. * Makefile.in: Show last 30 lines of the package build log on errors. diff -r e60d29a560ab -r 10d9403ec6bc Makefile.in --- a/Makefile.in Thu Jul 02 11:55:26 2020 -0400 +++ b/Makefile.in Sat Jul 04 10:31:42 2020 +0200 @@ -903,7 +903,7 @@ echo; \ echo 'Failed to build package $(1)!'; \ echo '------------------------------------------------------------'; \ - tail -n 10 '$(LOG_DIR)/$(1)' | $(SED) -n '/./p'; \ + tail -n 30 '$(LOG_DIR)/$(1)' | $(SED) -n '/./p'; \ echo '------------------------------------------------------------'; \ echo '[log] $(LOG_DIR)/$(1)'; \ echo; \