From: Chris Rees Date: Tue, 30 Nov 2010 08:41:39 +0000 (+0100) Subject: build system: do not use GNU-isms in find X-Git-Tag: 1_19_0~478 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=12caabfa2da59ef877ad7ccbe949164dcc6d69e4;p=oweals%2Fbusybox.git build system: do not use GNU-isms in find Signed-off-by: Chris Rees Signed-off-by: Denys Vlasenko --- diff --git a/Makefile b/Makefile index 69854373b..d9204f411 100644 --- a/Makefile +++ b/Makefile @@ -1008,8 +1008,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 # distclean #