From b6b182f309ac41fd8d308f16381f62d5ddbc04c1 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 24 Mar 2005 10:02:36 +0000 Subject: [PATCH] [project @ 2005-03-24 10:02:36 by simonmar] Don't build GHC in all of GhcLibWays, like we do for other libraries --- ghc/compiler/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 8cdf9ab..32b29f0 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -752,6 +752,11 @@ PACKAGE_CPP_OPTS += -DPKG_DEPENDS='$(PKG_DEPENDS)' # build system for ghc/compiler isn't set up to handle it. SplitObjs = NO +# the package build system likes to set WAYS=$(GhcLibWays), but we don't +# really want to build the whole of GHC multiple ways... if you do, +# set GhcCompilerWays instead. +GhcLibWays = $(GhcCompilerWays) + # override default definition of HS_IFACES so we can add $(odir) HS_IFACES = $(addsuffix .$(way_)hi,$(basename $(HS_OBJS))) endif -- 1.7.10.4