From 585abc87cf88007f49d1d822846d7e25fccd6377 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Wed, 8 Jan 2025 02:55:26 -0600 Subject: [PATCH] scripts: Fixed make summary-diff, adopted -Q/--small-table Looks like this was never updated after changing the -Y/--summary + -c/--compare hack to its own -Q/--small-table flag. Fortunately a single character fix. Unrelated, but I was considering dropping the make *-diff rules, until the different compile-time targets proved they are _very_ useful when jumping around various commits/builds. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 62680ba7..f345d5f4 100644 --- a/Makefile +++ b/Makefile @@ -404,7 +404,7 @@ summary-diff sizes-diff: $(OBJ) $(CI) -fctx='max(size)' -q -o-) \ -fcode -fdata -fstack='max(stack)' -fctx='max(ctx)' \ -bbuild='"BEFORE"' -q -o-) \ - -bbuild -cBEFORE -Y $(SUMMARYFLAGS)) + -bbuild -cBEFORE -Q $(SUMMARYFLAGS)) ## Build the test-runner .PHONY: test-runner build-tests