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 /drivers/rtc | |
| 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 'drivers/rtc')
| -rw-r--r-- | drivers/rtc/Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile index 7f817dcf2..94bc518a5 100644 --- a/drivers/rtc/Makefile +++ b/drivers/rtc/Makefile @@ -59,7 +59,7 @@ COBJS-$(CONFIG_RTC_RX8025) += rx8025.o  COBJS-$(CONFIG_RTC_S3C24X0) += s3c24x0_rtc.o  COBJS-$(CONFIG_RTC_X1205) += x1205.o -COBJS	:= $(sort COBJS-y) +COBJS	:= $(sort $(COBJS-y))  SRCS	:= $(COBJS:.o=.c)  OBJS	:= $(addprefix $(obj),$(COBJS)) |