summaryrefslogtreecommitdiff
path: root/common/Makefile
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2008-09-09 16:55:47 +0200
committerWolfgang Denk <wd@denx.de>2008-09-09 16:55:47 +0200
commit2c8ccf2728f5e67d991cecf76c4057db75a87b67 (patch)
tree29d3e9fc2b2ff1c5dd4fcb9832437e68288a8877 /common/Makefile
parent880f6a5d7596f42db5ff8803b797b78ec5b146e0 (diff)
Makefile: fix bug introduced by commit 47ffd6c2
Diffstat (limited to 'common/Makefile')
-rw-r--r--common/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Makefile b/common/Makefile
index d3888d61e..8d4a42695 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -153,7 +153,7 @@ COBJS-$(CONFIG_LYNXKDI) += lynxkdi.o
COBJS-$(CONFIG_USB_KEYBOARD) += usb_kbd.o
COBJS-$(CONFIG_DDR_SPD) += ddr_spd.o
-COBJS := $(sort COBJS-y)
+COBJS := $(sort $(COBJS-y))
SRCS := $(AOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(AOBJS) $(COBJS))