Repository : ssh://darcs.haskell.org//srv/darcs/testsuite On branch : master
http://hackage.haskell.org/trac/ghc/changeset/4c908e8b4f9a2d46b7edaf2cf4fb825ece8579a0 >--------------------------------------------------------------- commit 4c908e8b4f9a2d46b7edaf2cf4fb825ece8579a0 Author: Simon Marlow <[email protected]> Date: Mon Jan 16 13:16:33 2012 +0000 Don't try to run ghc-config when cleaning >--------------------------------------------------------------- mk/boilerplate.mk | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/mk/boilerplate.mk b/mk/boilerplate.mk index ad79498..707c037 100644 --- a/mk/boilerplate.mk +++ b/mk/boilerplate.mk @@ -149,7 +149,9 @@ $(ghc-config-mk) : $(TOP)/mk/ghc-config $(TOP)/mk/ghc-config "$(TEST_HC)" >"$@"; if [ $$? != 0 ]; then $(RM) "$@"; exit 1; fi # If the ghc-config fails, remove $@, and fail +ifeq "$(findstring clean,$(MAKECMDGOALS))" "" include $(ghc-config-mk) +endif # ----------------------------------------------------------------------------- _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
