Mercurial > mplayer.hg
changeset 29268:170369ec951c
Add missing path to find invocation for tags/TAGS creation.
author | diego |
---|---|
date | Fri, 15 May 2009 23:17:25 +0000 |
parents | 7b2f34b6ff9a |
children | 4d9de809b174 |
files | Makefile |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Fri May 15 22:24:12 2009 +0000 +++ b/Makefile Fri May 15 23:17:25 2009 +0000 @@ -982,10 +982,10 @@ doxygen DOCS/tech/Doxyfile TAGS: - rm -f $@; find -name '*.[chS]' -o -name '*.asm' | xargs etags -a + rm -f $@; find . -name '*.[chS]' -o -name '*.asm' | xargs etags -a tags: - rm -f $@; find -name '*.[chS]' -o -name '*.asm' | xargs ctags -a + rm -f $@; find . -name '*.[chS]' -o -name '*.asm' | xargs ctags -a