From ceaa62a6f0237a8ddd2a5f659e6535fcd054332f Mon Sep 17 00:00:00 2001 From: Stefan Roese Date: Tue, 27 Oct 2009 15:57:24 +0100 Subject: ppc4xx: Fix problems in some ppc4xx board Makefiles Some 4xx Makefiles didn't add $(SOBJ) to their board library. This was no till now problem, since those boards included this object (init.o most of the time) directly from their linker scripts. This patch clean this up, so that all objects are now collected in the board library. This is in preparation for the upcoming PPC4xx linker script consolidation. Signed-off-by: Stefan Roese --- board/mpl/mip405/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/mpl/mip405') diff --git a/board/mpl/mip405/Makefile b/board/mpl/mip405/Makefile index 53bf846586..18a8d8656c 100644 --- a/board/mpl/mip405/Makefile +++ b/board/mpl/mip405/Makefile @@ -38,7 +38,7 @@ OBJS := $(addprefix $(obj),$(COBJS)) SOBJS := $(addprefix $(obj),$(SOBJS)) $(LIB): $(OBJS) $(SOBJS) - $(AR) $(ARFLAGS) $@ $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS) clean: rm -f $(SOBJS) $(OBJS) -- cgit v1.2.1