kbuild: tags file generation fixup
Here is a fixup for tags file generation, for proper tags of __releases/__acquires functions. Signed-off-by: samuel.thibault@ens-lyon.org Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
parent
0d54164331
commit
54e08a2392
14
Makefile
14
Makefile
|
@ -1236,9 +1236,10 @@ cscope: FORCE
|
||||||
quiet_cmd_TAGS = MAKE $@
|
quiet_cmd_TAGS = MAKE $@
|
||||||
define cmd_TAGS
|
define cmd_TAGS
|
||||||
rm -f $@; \
|
rm -f $@; \
|
||||||
ETAGSF=`etags --version | grep -i exuberant >/dev/null && \
|
ETAGSF=`etags --version | grep -i exuberant >/dev/null && \
|
||||||
echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \
|
echo "-I __initdata,__exitdata,__acquires,__releases \
|
||||||
--extra=+f --c-kinds=+px"`; \
|
-I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \
|
||||||
|
--extra=+f --c-kinds=+px"`; \
|
||||||
$(all-sources) | xargs etags $$ETAGSF -a
|
$(all-sources) | xargs etags $$ETAGSF -a
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -1249,9 +1250,10 @@ TAGS: FORCE
|
||||||
quiet_cmd_tags = MAKE $@
|
quiet_cmd_tags = MAKE $@
|
||||||
define cmd_tags
|
define cmd_tags
|
||||||
rm -f $@; \
|
rm -f $@; \
|
||||||
CTAGSF=`ctags --version | grep -i exuberant >/dev/null && \
|
CTAGSF=`ctags --version | grep -i exuberant >/dev/null && \
|
||||||
echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \
|
echo "-I __initdata,__exitdata,__acquires,__releases \
|
||||||
--extra=+f --c-kinds=+px"`; \
|
-I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \
|
||||||
|
--extra=+f --c-kinds=+px"`; \
|
||||||
$(all-sources) | xargs ctags $$CTAGSF -a
|
$(all-sources) | xargs ctags $$CTAGSF -a
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue