[patch] Makefile
Denys Vlasenko
vda.linux at googlemail.com
Sun May 23 14:14:39 UTC 2010
On Sunday 23 May 2010 10:25, Cristian Ionescu-Idbohrn wrote:
> 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.
Applied, thanks!
--
vda
More information about the busybox
mailing list