diff options
author | Wolfgang Denk <wd@denx.de> | 2008-07-02 23:00:14 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-02 23:00:14 +0200 |
commit | 461fa68d20861811487944d22291db5a13410e20 (patch) | |
tree | 54d2bd61d37a375667cef5e91ccc3bfb11407ea9 /cpu/sh3/Makefile | |
parent | 5981ebd32017e062b08aa6747cf591276f2db779 (diff) | |
download | u-boot-461fa68d20861811487944d22291db5a13410e20.tar.gz u-boot-461fa68d20861811487944d22291db5a13410e20.tar.xz u-boot-461fa68d20861811487944d22291db5a13410e20.zip |
Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'cpu/sh3/Makefile')
-rw-r--r-- | cpu/sh3/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/sh3/Makefile b/cpu/sh3/Makefile index 7679248bfe..1fdeb3cf34 100644 --- a/cpu/sh3/Makefile +++ b/cpu/sh3/Makefile @@ -37,7 +37,7 @@ OBJS = cpu.o interrupts.o watchdog.o time.o cache.o all: .depend $(START) $(LIB) $(LIB): $(OBJS) - $(AR) crv $@ $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) ######################################################################### |