aboutsummaryrefslogtreecommitdiff
path: root/Makefile
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 /Makefile
parent58c3d21c2e3caa5e5f3736a72136903dbf3c69d1 (diff)
downloadbusybox-12caabfa2da59ef877ad7ccbe949164dcc6d69e4.tar.gz
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 (limited to 'Makefile')
-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):
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
#