From: Andrew Tridgell Date: Thu, 22 Apr 2010 04:52:19 +0000 (+1000) Subject: build: we don't need this makefile magic any more X-Git-Tag: release-3-6-0pre1~2650 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=6669152a4a5919ecad633b594708d6b95577b4dc;p=amitay%2Fsamba.git 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 --- diff --git a/buildtools/scripts/Makefile.waf b/buildtools/scripts/Makefile.waf index ac5c01355a8..f9c3fbb3bb2 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