aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-02-04 21:41:23 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-02-04 21:41:23 +0000
commit7a45c49344a4cfd9f24a8aaf8351d6bfe981346a (patch)
treea4c9e7de08db0b203eae962da233c7b527de919d
parentfc1f6e835ce87baab978ea8c3673b1be73a2e23e (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11122 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules
index bae0e9c001..017af9c64c 100644
--- a/Makefile.rules
+++ b/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
#----------------------------------------------------------