mirror of https://github.com/mpv-player/mpv
Simplify find invocation in tags/TAGS generation command:
- Drop '-print', which is the default for find. - Drop unnecessary invocation of find in a subshell. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29309 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
239f909df7
commit
76c0f7b271
4
Makefile
4
Makefile
|
@ -982,10 +982,10 @@ doxygen:
|
|||
doxygen DOCS/tech/Doxyfile
|
||||
|
||||
TAGS:
|
||||
rm -f $@; ( find -name '*.[chS]' -o -name '*.asm' -print ) | xargs etags -a
|
||||
rm -f $@; find -name '*.[chS]' -o -name '*.asm' | xargs etags -a
|
||||
|
||||
tags:
|
||||
rm -f $@; ( find -name '*.[chS]' -o -name '*.asm' -print ) | xargs ctags -a
|
||||
rm -f $@; find -name '*.[chS]' -o -name '*.asm' | xargs ctags -a
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue