summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-05-15 22:24:12 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-05-15 22:24:12 +0000
commit76c0f7b271cc54e219b188ccec33fef9e5501e3a (patch)
tree25d3cb96ec22088e54d6da07934ed3aa24235d6f /Makefile
parent239f909df722e486fe6face7a58e834ea5d55225 (diff)
downloadmpv-76c0f7b271cc54e219b188ccec33fef9e5501e3a.tar.bz2
mpv-76c0f7b271cc54e219b188ccec33fef9e5501e3a.tar.xz
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f308abc086..ec957df3c2 100644
--- a/Makefile
+++ b/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