[SCM] Samba Shared Repository - branch master updated

Andrew Tridgell tridge at samba.org
Fri Jan 7 18:36:02 MST 2011


The branch, master has been updated
       via  005c637 waf: ensure "make dist" works from a clean git tree for all libraries
      from  52aac4d Move wins_lookup_open_socket_in() to remove a compile warning.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 005c6370cdaab69d4228ecbf5e7369ebc61b86ae
Author: Andrew Tridgell <tridge at samba.org>
Date:   Sat Jan 8 11:39:32 2011 +1100

    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 <tridge at samba.org>
    Autobuild-Date: Sat Jan  8 02:35:22 CET 2011 on sn-devel-104

-----------------------------------------------------------------------

Summary of changes:
 lib/replace/Makefile     |    6 ++++--
 lib/talloc/Makefile      |    6 ++++--
 lib/tdb/Makefile         |    6 ++++--
 lib/tevent/Makefile      |    6 ++++--
 source4/lib/ldb/Makefile |    6 ++++--
 5 files changed, 20 insertions(+), 10 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/replace/Makefile b/lib/replace/Makefile
index 5b8220c..3649901 100644
--- a/lib/replace/Makefile
+++ b/lib/replace/Makefile
@@ -21,10 +21,12 @@ quicktest:
 	$(WAF) test --quick $(TEST_OPTIONS)
 
 dist:
-	$(WAF) dist
+	touch .tmplock
+	WAFLOCK=.tmplock $(WAF) dist
 
 distcheck:
-	$(WAF) distcheck
+	touch .tmplock
+	WAFLOCK=.tmplock $(WAF) distcheck
 
 clean:
 	$(WAF) clean
diff --git a/lib/talloc/Makefile b/lib/talloc/Makefile
index 95564eb..4c28653 100644
--- a/lib/talloc/Makefile
+++ b/lib/talloc/Makefile
@@ -21,10 +21,12 @@ quicktest:
 	$(WAF) test --quick $(TEST_OPTIONS)
 
 dist:
-	$(WAF) dist
+	touch .tmplock
+	WAFLOCK=.tmplock $(WAF) dist
 
 distcheck:
-	$(WAF) distcheck
+	touch .tmplock
+	WAFLOCK=.tmplock $(WAF) distcheck
 
 clean:
 	$(WAF) clean
diff --git a/lib/tdb/Makefile b/lib/tdb/Makefile
index 95564eb..4c28653 100644
--- a/lib/tdb/Makefile
+++ b/lib/tdb/Makefile
@@ -21,10 +21,12 @@ quicktest:
 	$(WAF) test --quick $(TEST_OPTIONS)
 
 dist:
-	$(WAF) dist
+	touch .tmplock
+	WAFLOCK=.tmplock $(WAF) dist
 
 distcheck:
-	$(WAF) distcheck
+	touch .tmplock
+	WAFLOCK=.tmplock $(WAF) distcheck
 
 clean:
 	$(WAF) clean
diff --git a/lib/tevent/Makefile b/lib/tevent/Makefile
index f178363..5acfcbc 100644
--- a/lib/tevent/Makefile
+++ b/lib/tevent/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
diff --git a/source4/lib/ldb/Makefile b/source4/lib/ldb/Makefile
index da05bcf..a07b4a7 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


-- 
Samba Shared Repository


More information about the samba-cvs mailing list