summaryrefslogtreecommitdiff
authorChris Rees <utisoft@gmail.com>2010-11-30 08:41:39 (GMT)
committer Denys Vlasenko <vda.linux@googlemail.com>2010-11-30 08:41:39 (GMT)
commit12caabfa2da59ef877ad7ccbe949164dcc6d69e4 (patch)
treee5142913849b1f19469280631ee4389aad630c32
parent58c3d21c2e3caa5e5f3736a72136903dbf3c69d1 (diff)
downloadbusybox-12caabfa2da59ef877ad7ccbe949164dcc6d69e4.zip
busybox-12caabfa2da59ef877ad7ccbe949164dcc6d69e4.tar.gz
busybox-12caabfa2da59ef877ad7ccbe949164dcc6d69e4.tar.bz2
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>
Diffstat
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6985437..d9204f4 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
#