diff options
| author | Wolfgang Denk <wd@denx.de> | 2008-09-09 16:55:47 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-09-09 16:55:47 +0200 | 
| commit | 2c8ccf2728f5e67d991cecf76c4057db75a87b67 (patch) | |
| tree | 29d3e9fc2b2ff1c5dd4fcb9832437e68288a8877 /common | |
| parent | 880f6a5d7596f42db5ff8803b797b78ec5b146e0 (diff) | |
| download | olio-uboot-2014.01-2c8ccf2728f5e67d991cecf76c4057db75a87b67.tar.xz olio-uboot-2014.01-2c8ccf2728f5e67d991cecf76c4057db75a87b67.zip | |
Makefile: fix bug introduced by commit 47ffd6c2
Diffstat (limited to 'common')
| -rw-r--r-- | common/Makefile | 2 | 
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)) |