Got this reported:

        sed: -e expression #1, char 10: unterminated `s' command
        sed: -e expression #1, char 7: unterminated `s' command

when doing:

        $ make distclean

This patch:

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

 # distclean
 #

seems to fix that.


Cheers,

-- 
Cristian
_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to