diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2010-05-21 04:17:48 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-05-26 22:27:38 +0200 |
commit | 6ece2550d1c0c5c811b302b1639ea35c2e485203 (patch) | |
tree | 51df3db2c8ac4a21f2e540be4e734d10534bb2f3 /board/freescale/mpc8610hpcd | |
parent | 59dde44acb82e571808190ccd3cd6b82dc9d7001 (diff) | |
download | u-boot-imx-6ece2550d1c0c5c811b302b1639ea35c2e485203.zip u-boot-imx-6ece2550d1c0c5c811b302b1639ea35c2e485203.tar.gz u-boot-imx-6ece2550d1c0c5c811b302b1639ea35c2e485203.tar.bz2 |
Convert Makefiles from COBJS-${} to COBJS-$()
Match style we use almost everywhere else
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/freescale/mpc8610hpcd')
-rw-r--r-- | board/freescale/mpc8610hpcd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mpc8610hpcd/Makefile b/board/freescale/mpc8610hpcd/Makefile index 930a206..847edaf 100644 --- a/board/freescale/mpc8610hpcd/Makefile +++ b/board/freescale/mpc8610hpcd/Makefile @@ -27,7 +27,7 @@ COBJS-y += $(BOARD).o COBJS-$(CONFIG_FSL_DDR2) += ddr.o COBJS-y += law.o -COBJS-${CONFIG_FSL_DIU_FB} += mpc8610hpcd_diu.o +COBJS-$(CONFIG_FSL_DIU_FB) += mpc8610hpcd_diu.o SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c) OBJS := $(addprefix $(obj),$(COBJS-y)) |