[MPlayer-cvslog] r29309 - trunk/Makefile

diego subversion at mplayerhq.hu
Sat May 16 00:24:13 CEST 2009


Author: diego
Date: Sat May 16 00:24:12 2009
New Revision: 29309

Log:
Simplify find invocation in tags/TAGS generation command:
- Drop '-print', which is the default for find.
- Drop unnecessary invocation of find in a subshell.

Modified:
   trunk/Makefile

Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile	Wed May 13 21:44:44 2009	(r29308)
+++ trunk/Makefile	Sat May 16 00:24:12 2009	(r29309)
@@ -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
 
 
 


More information about the MPlayer-cvslog mailing list