Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/5cd52bfd00de6ba168d4447cc67b74686681786d >--------------------------------------------------------------- commit 5cd52bfd00de6ba168d4447cc67b74686681786d Author: Ian Lynagh <[email protected]> Date: Tue Oct 16 01:25:45 2012 +0100 Build system fix for building a profiling GHC >--------------------------------------------------------------- ghc.mk | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/ghc.mk b/ghc.mk index 2c64b02..aa700a6 100644 --- a/ghc.mk +++ b/ghc.mk @@ -677,6 +677,9 @@ endif # BUILD_DIRS_EXTRA needs to come after BUILD_DIRS, because stuff in # libraries/dph/ghc.mk refers to stuff defined earlier, in particular # things like $(libraries/dph/dph-base_dist-install_GHCI_LIB) +ifeq "$(GhcProfiled)" "YES" +BUILD_DIRS_EXTRA := $(filter-out libraries/dph,$(BUILD_DIRS_EXTRA)) +endif include $(patsubst %, %/ghc.mk, $(BUILD_DIRS) $(BUILD_DIRS_EXTRA)) # A useful pseudo-target (must be after the include above, because it needs _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
