From 424370274af3a1a837a0ce3078879a3dddee1e33 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 27 Mar 2009 12:19:10 +0100 Subject: s3:build: make it possible to pass down CTAGS_OPTIONS or ETAGS_OPTIONS metze --- source3/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/Makefile.in') diff --git a/source3/Makefile.in b/source3/Makefile.in index fd753128d4..18ee7fec1c 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 -- cgit