From fe6623986035b82e730165735e6f1eeecb7a8ac0 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Wed, 4 Feb 2004 21:41:23 +0000 Subject: [PATCH] Always replace instead of appending when creating archive files. It may be slightly slower, but I think we can handle it, especially if it means BytecodeLibs are correctly regenerated. llvm-svn: 11122 --- llvm/Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index bae0e9c00137..017af9c64c80 100644 --- a/llvm/Makefile.rules +++ b/llvm/Makefile.rules @@ -352,7 +352,7 @@ Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS) DependC := $(CC) -MM -I$(LEVEL)/include $(CPPFLAGS) # Archive a bunch of .o files into a .a file... -AR = ${AR_PATH} cq +AR = $(AR_PATH) cr #---------------------------------------------------------- -- GitLab