On Sun, Aug 13, 2000 at 09:26:35AM +0100, Russell King wrote:

> -O_OBJS               := $(sort $(filter-out $(export-objs), $(obj-y)))
> -OX_OBJS              := $(sort $(filter     $(export-objs), $(obj-y)))
> +O_OBJS               := $(filter-out $(export-objs), $(obj-y))
> +OX_OBJS              := $(filter     $(export-objs), $(obj-y))

I fear that this change will make some modules linked in more than once.
the $sort was put there for exactly that reason.

-- 
Vojtech Pavlik
SuSE Labs

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to