diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-03-03 22:29:57 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-03-03 22:29:57 +0000 |
commit | 7cef4375e696fd226399ea2b22efef0927680e8e (patch) | |
tree | 45ea74f7db9809c743ec48afbbd634beafafdc77 /ghc/ghc.mk | |
parent | 2bdc4fdc00f1124ee7f379057a357c1beabbf11c (diff) | |
download | haskell-7cef4375e696fd226399ea2b22efef0927680e8e.tar.gz |
Automatically define _INPLACE variables for perl programs too
and use them for split
Diffstat (limited to 'ghc/ghc.mk')
-rw-r--r-- | ghc/ghc.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ghc/ghc.mk b/ghc/ghc.mk index 73d025369c..292ae92cfa 100644 --- a/ghc/ghc.mk +++ b/ghc/ghc.mk @@ -150,9 +150,9 @@ $(GHC_STAGE2) : | $(GHC_DEPENDENCIES) $(GHC_STAGE3) : | $(GHC_DEPENDENCIES) ifeq "$(GhcUnregisterised)" "NO" -$(GHC_STAGE1) : | $(SPLIT) -$(GHC_STAGE2) : | $(SPLIT) -$(GHC_STAGE3) : | $(SPLIT) +$(GHC_STAGE1) : | $$(ghc-split_INPLACE) +$(GHC_STAGE2) : | $$(ghc-split_INPLACE) +$(GHC_STAGE3) : | $$(ghc-split_INPLACE) endif ifeq "$(Windows_Host)" "YES" |