From 7199ea76ed2f0a9c238a9654e6394e56cbf4f42e Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Thu, 1 Nov 2012 18:08:48 +0100 Subject: [PATCH] xilinx: Use proper name instead of BOARD variable The reason is that this folder is symlinked from others which means that BOARD variable is setup to origin board name. Signed-off-by: Michal Simek --- board/xilinx/microblaze-generic/Makefile | 2 +- board/xilinx/ppc405-generic/Makefile | 2 +- board/xilinx/ppc440-generic/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board/xilinx/microblaze-generic/Makefile b/board/xilinx/microblaze-generic/Makefile index 761203dcfcd..d4d11692922 100644 --- a/board/xilinx/microblaze-generic/Makefile +++ b/board/xilinx/microblaze-generic/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).o -COBJS = $(BOARD).o +COBJS = microblaze-generic.o SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) diff --git a/board/xilinx/ppc405-generic/Makefile b/board/xilinx/ppc405-generic/Makefile index 3c1bf9965c6..955715972a0 100644 --- a/board/xilinx/ppc405-generic/Makefile +++ b/board/xilinx/ppc405-generic/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).o -COBJS = $(BOARD).o +COBJS = ppc405-generic.o SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) diff --git a/board/xilinx/ppc440-generic/Makefile b/board/xilinx/ppc440-generic/Makefile index 9e8de997b00..80b34b51c1f 100644 --- a/board/xilinx/ppc440-generic/Makefile +++ b/board/xilinx/ppc440-generic/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).o -COBJS = $(BOARD).o +COBJS = ppc440-generic.o SOBJS = init.o SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) -- 2.47.3