[patch] scripts/Makefile.lib

Denys Vlasenko vda.linux at googlemail.com
Wed Oct 29 01:03:19 UTC 2008


On Tuesday 28 October 2008 20:58, Cristian Ionescu-Idbohrn wrote:
> Would this patch be acceptable?
> 
> Convert from '-Wl,-<option>' (used to give specific gcc link options) to
> direct link '-<option>'.
> 
> Index: scripts/Makefile.lib
> ===================================================================
> --- scripts/Makefile.lib	(revision 22830)
> +++ scripts/Makefile.lib	(working copy)
> @@ -118,7 +118,7 @@
>  cpp_flags      = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(__cpp_flags)
> 
>  # TODO: seems to be a wrong thing to do! LDFLAGS contains gcc's flags!
> -ld_flags       = $(LDFLAGS) $(EXTRA_LDFLAGS)
> +ld_flags       = $(filter-out -Wl$(comma)%,$(LDFLAGS) $(EXTRA_LDFLAGS))
> 
>  # Finds the multi-part object the current object will be linked into
>  modname-multi = $(sort $(foreach m,$(multi-used),\


What case does it fix?
--
vda



More information about the busybox mailing list