summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2009-05-30 23:31:33 +0000
committerIan Lynagh <igloo@earth.li>2009-05-30 23:31:33 +0000
commitda22bc8bb5b33eaeba2f06152904a3a2a689b6c1 (patch)
treeb55c62831c6e086abe012515a546788955603b93 /rts
parent0ef6ba7b28187a4bf5309f9702eeaf53a281204b (diff)
downloadhaskell-da22bc8bb5b33eaeba2f06152904a3a2a689b6c1.tar.gz
$(XARGS) might include arguments, so don't quote it in makefiles
Diffstat (limited to 'rts')
-rw-r--r--rts/ghc.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/ghc.mk b/rts/ghc.mk
index 9629aba5bb..a9ccec133a 100644
--- a/rts/ghc.mk
+++ b/rts/ghc.mk
@@ -160,7 +160,7 @@ $$(rts_$1_LIB) : $$(rts_$1_OBJS) rts/libs.depend
else
$$(rts_$1_LIB) : $$(rts_$1_OBJS)
"$$(RM)" $$(RM_OPTS) $$@
- echo $$(rts_$1_OBJS) | "$$(XARGS)" $$(AR) $$(EXTRA_AR_ARGS) $$@
+ echo $$(rts_$1_OBJS) | $$(XARGS) $$(AR) $$(EXTRA_AR_ARGS) $$@
endif
endef