diff options
| author | ken kuo <ken.kuoky@gmail.com> | 2013-08-06 01:00:54 +0800 | 
|---|---|---|
| committer | Andes <uboot@andestech.com> | 2013-08-09 01:51:24 +0800 | 
| commit | a78dac79ede7fbb4c9e816abc879655540c3f076 (patch) | |
| tree | 8eb91c92b311540a6a2d375c715a8f8faaacc921 | |
| parent | 9f128bcc0728e421c067b4f3f11dd36fa6b9e9ee (diff) | |
| download | olio-uboot-2014.01-a78dac79ede7fbb4c9e816abc879655540c3f076.tar.xz olio-uboot-2014.01-a78dac79ede7fbb4c9e816abc879655540c3f076.zip | |
nds32: fix the missing COBJS-y change
There is a missing in previous
commit 951344b778d6ac67b94011d942a5a55da7202027
(nds32: Convert Makefiles to use COBJS-y style)
will cause compile error.
Signed-off-by: Kuan-Yu Kuo <ken.kuoky@gmail.com>
Cc: Macpaul Lin <macpaul@gmail.com>
Cc: Andes <uboot@andestech.com>
Signed-off-by: Andes <uboot@andestech.com>
| -rw-r--r-- | board/AndesTech/adp-ag102/Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/board/AndesTech/adp-ag102/Makefile b/board/AndesTech/adp-ag102/Makefile index ec67dd04b..6c187190b 100644 --- a/board/AndesTech/adp-ag102/Makefile +++ b/board/AndesTech/adp-ag102/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/config.mk  LIB	= $(obj)lib$(BOARD).o -COBJS	:= adp-ag102.o +COBJS-y	:= adp-ag102.o  SRCS	:= $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)  OBJS	:= $(addprefix $(obj),$(COBJS-y) $(SOBJS-y)) |