Commit a29c189e authored by Sam Ravnborg's avatar Sam Ravnborg

kbuild: add '--extra=+f' to ctags in Makefile in order to search for file names

From: John Kacur <jkacur@rogers.com>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent 308feb10
......@@ -1170,7 +1170,7 @@ quiet_cmd_tags = MAKE $@
define cmd_tags
rm -f $@; \
CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_GPL"`; \
$(all-sources) | xargs ctags $$CTAGSF -a
$(all-sources) | xargs ctags $$CTAGSF -a --extra=+f
endef
TAGS: FORCE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment