summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2015-10-12 00:10:37 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2015-10-13 16:02:20 +0200
commit93229184066a9b7726e3b572bca3f612ed2815fb (patch)
treee84e76258974dfca7b6f63bc621b8249f7ef48f2 /Makefile.in
parent83f00e91567d387caf02da9cd3791c3fef85c80d (diff)
downloadlvm2-93229184066a9b7726e3b572bca3f612ed2815fb.tar.gz
makefiles: src dirs have depth 5
For tags generation scan depth 5.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 68fbc7969..e4d993736 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -234,7 +234,7 @@ ifneq ($(shell which ctags),)
.PHONY: tags
tags:
test -z "$(shell find $(top_srcdir) -type f -name '*.[ch]' -newer tags 2>/dev/null | head -1)" || $(RM) tags
- test -f tags || find $(top_srcdir) -maxdepth 4 -type f -name '*.[ch]' -exec ctags -a '{}' +
+ test -f tags || find $(top_srcdir) -maxdepth 5 -type f -name '*.[ch]' -exec ctags -a '{}' +
CLEAN_TARGETS += tags
endif