[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-763-gee8bc96

Stefan Metzmacher metze at samba.org
Fri Mar 27 11:28:12 GMT 2009


The branch, master has been updated
       via  ee8bc9659c172a06fc40836c7dea1fb1d9aff244 (commit)
       via  424370274af3a1a837a0ce3078879a3dddee1e33 (commit)
      from  cacfae159f7c1fa1e45fb1912ad813000ec281d6 (commit)

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


- Log -----------------------------------------------------------------
commit ee8bc9659c172a06fc40836c7dea1fb1d9aff244
Author: Stefan Metzmacher <metze at samba.org>
Date:   Fri Mar 27 12:20:09 2009 +0100

    s4:build: make it possible to pass down CTAGS_OPTIONS or ETAGS_OPTIONS
    
    metze

commit 424370274af3a1a837a0ce3078879a3dddee1e33
Author: Stefan Metzmacher <metze at samba.org>
Date:   Fri Mar 27 12:19:10 2009 +0100

    s3:build: make it possible to pass down CTAGS_OPTIONS or ETAGS_OPTIONS
    
    metze

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

Summary of changes:
 source3/Makefile.in         |    4 ++--
 source4/build/make/rules.mk |    5 +++--
 2 files changed, 5 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/Makefile.in b/source3/Makefile.in
index fd75312..18ee7fe 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -2906,10 +2906,10 @@ include/build_env.h: script/build_env.sh
 proto::
 
 etags::
-	find $(srcdir)/.. -name "*.[ch]" | xargs -n 100 etags --append
+	find $(srcdir)/.. -name "*.[ch]" | xargs -n 100 etags --append $(ETAGS_OPTIONS)
 
 ctags::
-	ctags `find $(srcdir)/.. -name "*.[ch]" | grep -v include/proto\.h`
+	ctags $(CTAGS_OPTIONS) `find $(srcdir)/.. -name "*.[ch]" | grep -v include/proto\.h`
 
 realclean:: clean
 	-rm -f config.log bin/.dummy script/findsmb script/gen-8bit-gap.sh
diff --git a/source4/build/make/rules.mk b/source4/build/make/rules.mk
index 55ecf89..e9f4786 100644
--- a/source4/build/make/rules.mk
+++ b/source4/build/make/rules.mk
@@ -185,7 +185,8 @@ showflags::
 base_srcdirs = $(srcdir) ../librpc/ ../lib/ ../libcli
 
 etags:
-	etags `find $(base_srcdirs) -name "*.[ch]"`
+	etags $(ETAGS_OPTIONS) `find $(base_srcdirs) -name "*.[ch]"`
 
 ctags:
-	ctags `find $(base_srcdirs) -name "*.[ch]"`
+	ctags $(CTAGS_OPTIONS) `find $(base_srcdirs) -name "*.[ch]"`
+


-- 
Samba Shared Repository


More information about the samba-cvs mailing list