diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-05-21 10:31:31 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-05-21 10:31:31 +0000 |
commit | d42eeec30cc321ef65a69ea0e85c17d176f89c71 (patch) | |
tree | 2c3deb81e3ae7eafa54ab34a219bc7ade796dd48 /rts | |
parent | ad9ca094d4b9774ebef7dfded73b2e64b830fb90 (diff) | |
download | haskell-d42eeec30cc321ef65a69ea0e85c17d176f89c71.tar.gz |
Fix #3201: "ar: Bad file number" build error with MSYS and SplitObjs=YES
Diffstat (limited to 'rts')
-rw-r--r-- | rts/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/ghc.mk b/rts/ghc.mk index fba236b88b..a88ea931fe 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) $$@ - echo $$(rts_$1_OBJS) | xargs $$(AR) $$(EXTRA_AR_ARGS) $$@ + echo $$(rts_$1_OBJS) | $$(XARGS) $$(AR) $$(EXTRA_AR_ARGS) $$@ endif endef |