From 6669152a4a5919ecad633b594708d6b95577b4dc Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 22 Apr 2010 14:52:19 +1000 Subject: build: we don't need this makefile magic any more The waf build now checks for all A=B variables passed via make and sets the same waf internal variable. This means all waf options are available via make. Removing this from the Makefile makes us less reliant on a modern version of make. Pair-Programmed-With: Andrew Bartlett --- buildtools/scripts/Makefile.waf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'buildtools/scripts') diff --git a/buildtools/scripts/Makefile.waf b/buildtools/scripts/Makefile.waf index ac5c01355a..f9c3fbb3bb 100644 --- a/buildtools/scripts/Makefile.waf +++ b/buildtools/scripts/Makefile.waf @@ -12,10 +12,10 @@ uninstall: $(WAF) uninstall test: - $(WAF) test $(if $(TESTS),--tests="$(TESTS)") + $(WAF) test quicktest: - $(WAF) test --quick $(if $(TESTS),--tests="$(TESTS)") + $(WAF) test --quick dist: $(WAF) dist -- cgit