From f3250d47fccbd7c2aea619463d672b0af08aea47 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 22 Nov 2000 12:27:57 +0000 Subject: [PATCH] [project @ 2000-11-22 12:27:57 by simonmar] omit PrelMain from the GHCi library. --- ghc/lib/std/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ghc/lib/std/Makefile b/ghc/lib/std/Makefile index d9bfb4a..22b2331 100644 --- a/ghc/lib/std/Makefile +++ b/ghc/lib/std/Makefile @@ -34,9 +34,8 @@ endif HSLIB = std -ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" -LIBOBJS = $(filter-out PrelHugs.$(way_)o,$(HS_OBJS)) -endif +# we don't want PrelMain in the GHCi library. +GHCI_LIBOBJS = $(filter-out PrelMain.$(way_)o,$(HS_OBJS)) #----------------------------------------------------------------------------- # Setting the GHC compile options -- 1.7.10.4