From 14718a725b65828c470167b922260840343d9843 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 4 Nov 2010 08:29:11 +1100 Subject: build: a more portable way of finding waf in makefiles this avoids using the non-portable shell command in makefiles Autobuild-User: Andrew Tridgell Autobuild-Date: Wed Nov 3 22:44:59 UTC 2010 on sn-devel-104 --- source4/lib/ldb/Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source4') diff --git a/source4/lib/ldb/Makefile b/source4/lib/ldb/Makefile index 3d0d8e4938..da05bcfb6d 100644 --- a/source4/lib/ldb/Makefile +++ b/source4/lib/ldb/Makefile @@ -1,8 +1,6 @@ # simple makefile wrapper to run waf -WAFPATH:=$(shell PATH=../../../buildtools/bin:buildtools/bin:$(PATH) which waf) - -WAF=WAF_MAKE=1 $(WAFPATH) +WAF=WAF_MAKE=1 PATH=buildtools/bin:../../../buildtools/bin:$$PATH waf all: $(WAF) build -- cgit