From: Willy Tarreau Date: Fri, 15 Mar 2019 16:28:36 +0000 (+0100) Subject: BUILD: Makefile: allow the reg-tests target to be verbose X-Git-Tag: v2.0-dev2~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f22bd9055bb49624b5ea2589fa40deb06e904af7;p=thirdparty%2Fhaproxy.git BUILD: Makefile: allow the reg-tests target to be verbose When debugging reg-tests, it's quite annoying not to be able to figure the syntax to call the scripts. Let's replace the '@' with '$(Q)' as for other commands so that launching them with "V=1" is enough to reveal the command line. --- diff --git a/Makefile b/Makefile index 0ab190295b..db7f419171 100644 --- a/Makefile +++ b/Makefile @@ -1100,7 +1100,7 @@ endif # Target to run the regression testing script files. reg-tests: - @./scripts/run-regtests.sh --LEVEL "$$LEVEL" $(REGTEST_ARGS) $(REG_TEST_FILES) + $(Q)./scripts/run-regtests.sh --LEVEL "$$LEVEL" $(REGTEST_ARGS) $(REG_TEST_FILES) .PHONY: $(REGTEST_ARGS) reg-tests-help: