From: Stefan Metzmacher Date: Fri, 27 Mar 2009 11:19:10 +0000 (+0100) Subject: s3:build: make it possible to pass down CTAGS_OPTIONS or ETAGS_OPTIONS X-Git-Tag: tdb-1.1.5~1064 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=424370274af3a1a837a0ce3078879a3dddee1e33 s3:build: make it possible to pass down CTAGS_OPTIONS or ETAGS_OPTIONS metze --- diff --git a/source3/Makefile.in b/source3/Makefile.in index fd753128d4c..18ee7fec1ca 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