[patch] Makefile

Denys Vlasenko vda.linux at googlemail.com
Sun May 23 19:53:30 UTC 2010


On Sunday 23 May 2010 20:44, Cristian Ionescu-Idbohrn wrote:
> On Sun, 23 May 2010, Denys Vlasenko wrote:
> 
> > On Sunday 23 May 2010 10:25, Cristian Ionescu-Idbohrn wrote:
> >
> > > diff --git a/Makefile b/Makefile
> > > index 14f5cd1..c231092 100644
> > > --- a/Makefile
> > > +++ b/Makefile
> > > @@ -1001,8 +1001,8 @@ $(mrproper-dirs):
> > >  mrproper: clean archmrproper $(mrproper-dirs)
> > >  	$(call cmd,rmdirs)
> > >  	$(call cmd,rmfiles)
> > > -	@find -name Config.src | sed 's/.src$/.in/' | xargs -r rm -f
> > > -	@find -name Kbuild.src | sed 's/.src$//' | xargs -r rm -f
> > > +	@find -name Config.src | sed 's/.src$$/.in/' | xargs -r rm -f
> > > +	@find -name Kbuild.src | sed 's/.src$$//' | xargs -r rm -f
> >
> > Applied, thanks!
> 
> Great.  But isn't that so that what you want to match is a '.' character,
> and not any character, in which case:
> 
> 	sed 's/\.src$$/.in/'
> 	       ^
> 	       is the correct way to do it?

We already know that these files end with .src - "find" ensures that.
-- 
vda


More information about the busybox mailing list