[commit: ghc] master: fix PrimOp dependencies (391f287)

Simon Marlow marlowsd at gmail.com
Mon Feb 18 11:43:45 CET 2013


Repository : ssh://darcs.haskell.org//srv/darcs/ghc

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/391f2879715a73ec09cd2c094f470b1be6c49612

>---------------------------------------------------------------

commit 391f2879715a73ec09cd2c094f470b1be6c49612
Author: Simon Marlow <marlowsd at gmail.com>
Date:   Mon Feb 18 09:46:33 2013 +0000

    fix PrimOp dependencies

>---------------------------------------------------------------

 compiler/ghc.mk |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/compiler/ghc.mk b/compiler/ghc.mk
index bb9a08f..cd492b9 100644
--- a/compiler/ghc.mk
+++ b/compiler/ghc.mk
@@ -493,11 +493,11 @@ $(compiler_stage1_depfile_haskell) : $(COMPILER_INCLUDES_DEPS) $(PRIMOP_BITS_STA
 $(compiler_stage2_depfile_haskell) : $(COMPILER_INCLUDES_DEPS) $(PRIMOP_BITS_STAGE2)
 $(compiler_stage3_depfile_haskell) : $(COMPILER_INCLUDES_DEPS) $(PRIMOP_BITS_STAGE3)
 
-$(foreach way,$$(compiler_stage1_WAYS),\
+$(foreach way,$(compiler_stage1_WAYS),\
       compiler/stage1/build/PrimOp.$($(way)_osuf)) : $(PRIMOP_BITS_STAGE1)
-$(foreach way,$$(compiler_stage2_WAYS),\
+$(foreach way,$(compiler_stage2_WAYS),\
       compiler/stage2/build/PrimOp.$($(way)_osuf)) : $(PRIMOP_BITS_STAGE2)
-$(foreach way,$$(compiler_stage3_WAYS),\
+$(foreach way,$(compiler_stage3_WAYS),\
       compiler/stage3/build/PrimOp.$($(way)_osuf)) : $(PRIMOP_BITS_STAGE3)
 
 





More information about the ghc-commits mailing list