summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2013-08-20 10:48:19 (GMT)
committerJason Evans <je@fb.com>2013-08-20 10:48:19 (GMT)
commit80ddf498eb166cad45c8592973eb4f949f176688 (patch)
treebf0c27fb4cb78340534c541b37d669189f23438f /Makefile.in
parentad505e0ec622883fbb0650763ea8b54f64a770c9 (diff)
downloadjemalloc-80ddf498eb166cad45c8592973eb4f949f176688.zip
jemalloc-80ddf498eb166cad45c8592973eb4f949f176688.tar.gz
jemalloc-80ddf498eb166cad45c8592973eb4f949f176688.tar.bz2
Fix build break for MSVC.
Introduce AROUT to control whether there is space between ARFLAGS and $@. This regression was introduced by ad505e0ec622883fbb0650763ea8b54f64a770c9. Reported by Mike Hommey.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 478becb..5909416 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -56,7 +56,7 @@ CTARGET = @CTARGET@
LDTARGET = @LDTARGET@
MKLIB = @MKLIB@
AR = @AR@
-ARFLAGS = crus
+ARFLAGS = @ARFLAGS@
CC_MM = @CC_MM@
ifeq (macho, $(ABI))
@@ -187,7 +187,7 @@ $(objroot)lib/$(LIBJEMALLOC)_s.$(A) : $(COBJS)
$(STATIC_LIBS):
@mkdir -p $(@D)
- $(AR) $(ARFLAGS) $@ $+
+ $(AR) $(ARFLAGS)@AROUT@ $+
$(objroot)test/bitmap$(EXE): $(objroot)src/bitmap.$(O)