aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rees <utisoft@gmail.com>2010-11-30 09:41:39 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-11-30 09:41:39 +0100
commit12caabfa2da59ef877ad7ccbe949164dcc6d69e4 (patch)
treee5142913849b1f19469280631ee4389aad630c32
parent58c3d21c2e3caa5e5f3736a72136903dbf3c69d1 (diff)
downloadbusybox-w32-12caabfa2da59ef877ad7ccbe949164dcc6d69e4.tar.gz
busybox-w32-12caabfa2da59ef877ad7ccbe949164dcc6d69e4.tar.bz2
busybox-w32-12caabfa2da59ef877ad7ccbe949164dcc6d69e4.zip
build system: do not use GNU-isms in find
Signed-off-by: Chris Rees <utisoft@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 69854373b..d9204f411 100644
--- a/Makefile
+++ b/Makefile
@@ -1008,8 +1008,8 @@ $(mrproper-dirs):
1008mrproper: clean archmrproper $(mrproper-dirs) 1008mrproper: clean archmrproper $(mrproper-dirs)
1009 $(call cmd,rmdirs) 1009 $(call cmd,rmdirs)
1010 $(call cmd,rmfiles) 1010 $(call cmd,rmfiles)
1011 @find -name Config.src | sed 's/.src$$/.in/' | xargs -r rm -f 1011 @find . -name Config.src | sed 's/.src$$/.in/' | xargs -r rm -f
1012 @find -name Kbuild.src | sed 's/.src$$//' | xargs -r rm -f 1012 @find . -name Kbuild.src | sed 's/.src$$//' | xargs -r rm -f
1013 1013
1014# distclean 1014# distclean
1015# 1015#