From 3640befc104a71709dad06bcaeb0be9db15864dc Mon Sep 17 00:00:00 2001 From: niftynei Date: Fri, 29 May 2020 15:48:55 -0500 Subject: [PATCH] tools-make: also be quiet if --quiet is flagged Missed a update-mocks.sh call --- tools/test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test/Makefile b/tools/test/Makefile index d3a51c114..6a2534cca 100644 --- a/tools/test/Makefile +++ b/tools/test/Makefile @@ -37,7 +37,7 @@ tools/test/gen_test.c.tmp.c: $(TOOLS_WIRE_DEPS) $(BOLT_GEN) --page impl tools/test/gen_test.h test_type < tools/test/test_cases > $@ tools/test/gen_test.c: tools/test/gen_test.c.tmp.c $(EXTERNAL_HEADERS) tools/test/gen_test.h - @MAKE=$(MAKE) tools/update-mocks.sh "$<" && mv "$<" "$@" + @MAKE=$(MAKE) tools/update-mocks.sh "$<" $(SUPPRESS_OUTPUT) && mv "$<" "$@" tools/test/gen_print.h: wire/gen_onion_wire.h $(TOOLS_WIRE_DEPS) $(BOLT_GEN) -P --page header $@ test_type < tools/test/test_cases > $@