diff options
author | Wolfgang Denk <wd@atlas.denx.de> | 2006-10-09 01:02:05 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@atlas.denx.de> | 2006-10-09 01:02:05 +0200 |
commit | 2b208f5308ae0c72a6840180e59ed1ab4f9b69fc (patch) | |
tree | 2ea530330347bf03dd7fca1dd19ef76b7c072c28 /lib_i386 | |
parent | 7ce343e49993341f2cdd559e0c44ad7507f71eb7 (diff) | |
download | bootable_bootloader_goldelico_gta04-2b208f5308ae0c72a6840180e59ed1ab4f9b69fc.zip bootable_bootloader_goldelico_gta04-2b208f5308ae0c72a6840180e59ed1ab4f9b69fc.tar.gz bootable_bootloader_goldelico_gta04-2b208f5308ae0c72a6840180e59ed1ab4f9b69fc.tar.bz2 |
Move "ar" flags to config.mk to allow for silent "make -s"
Based on patch by Mike Frysinger, 20 Jun 2006
Diffstat (limited to 'lib_i386')
-rw-r--r-- | lib_i386/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_i386/Makefile b/lib_i386/Makefile index 8dc809e..e344da5 100644 --- a/lib_i386/Makefile +++ b/lib_i386/Makefile @@ -34,7 +34,7 @@ SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) $(LIB): $(obj).depend $(OBJS) - $(AR) crv $@ $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) ######################################################################### |