From 005c6370cdaab69d4228ecbf5e7369ebc61b86ae Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 8 Jan 2011 11:39:32 +1100 Subject: waf: ensure "make dist" works from a clean git tree for all libraries this uses a temporary waf lock file to force the build directory Autobuild-User: Andrew Tridgell Autobuild-Date: Sat Jan 8 02:35:22 CET 2011 on sn-devel-104 --- source4/lib/ldb/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source4/lib') diff --git a/source4/lib/ldb/Makefile b/source4/lib/ldb/Makefile index da05bcfb6d..a07b4a7164 100644 --- a/source4/lib/ldb/Makefile +++ b/source4/lib/ldb/Makefile @@ -15,10 +15,12 @@ test: $(WAF) test $(TEST_OPTIONS) dist: - $(WAF) dist + touch .tmplock + WAFLOCK=.tmplock $(WAF) dist distcheck: - $(WAF) distcheck + touch .tmplock + WAFLOCK=.tmplock $(WAF) distcheck clean: $(WAF) clean -- cgit