[MPlayer-cvslog] r29310 - trunk/Makefile

Reimar Döffinger Reimar.Doeffinger at gmx.de
Sat May 16 16:18:55 CEST 2009


On Sat, May 16, 2009 at 04:37:53PM +0400, Andrew Savchenko wrote:
> On Saturday 16 May 2009, diego wrote:
> > Author: diego
> > Date: Sat May 16 01:17:25 2009
> > New Revision: 29310
> >
> > Log:
> > Add missing path to find invocation for tags/TAGS creation.
> >
> > Modified:
> >    trunk/Makefile
> >
> > Modified: trunk/Makefile
> > ===================================================================
> >=========== --- trunk/Makefile	Sat May 16 00:24:12 2009	(r29309)
> > +++ trunk/Makefile	Sat May 16 01:17:25 2009	(r29310)
> > @@ -982,10 +982,10 @@ doxygen:
> >  	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
> 
> Is this really needed? man find says:
> "If no paths are given, the current directory is used."

That is a GNU extension. BSD find does not have that feature, and I
don't think POSIX requires it.


More information about the MPlayer-cvslog mailing list