diff options
author | Günther Deschner <gd@samba.org> | 2008-09-23 22:24:46 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-09-23 23:16:35 +0200 |
commit | 8bd302ab226785cfe7f518a76a67ec74e20de84f (patch) | |
tree | 0a7a5fb6777d23bebcd634e1cff505ce52658a03 /source3 | |
parent | 1f8fe94ff3a928063c91ded4571751da74d2c321 (diff) | |
download | samba-8bd302ab226785cfe7f518a76a67ec74e20de84f.tar.gz samba-8bd302ab226785cfe7f518a76a67ec74e20de84f.tar.bz2 samba-8bd302ab226785cfe7f518a76a67ec74e20de84f.zip |
s3-build: let ctags/etags start from the toplevel dir.
Guenther
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 94d8d50da8..97095fcadd 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -2649,10 +2649,10 @@ include/build_env.h: script/build_env.sh proto:: etags:: - etags `find $(srcdir) -name "*.[ch]"` + etags `find $(srcdir)/.. -name "*.[ch]"` ctags:: - ctags `find $(srcdir) -name "*.[ch]"` + ctags `find $(srcdir)/.. -name "*.[ch]"` realclean:: clean -rm -f config.log bin/.dummy script/findsmb script/gen-8bit-gap.sh |