From: rrt Date: Thu, 30 Mar 2000 14:12:42 +0000 (+0000) Subject: [project @ 2000-03-30 14:12:42 by rrt] X-Git-Tag: Approximately_9120_patches~4870 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=f101ebc192ccc4464d99c75faf54748b883fa4f2;hp=aa58acc159c4d542779eca3e2653659db209d7cd;p=ghc-hetmet.git [project @ 2000-03-30 14:12:42 by rrt] Filter out PrelHugs in all ways for building DLLs. --- diff --git a/ghc/lib/std/Makefile b/ghc/lib/std/Makefile index 153b9fb..ba614e7 100644 --- a/ghc/lib/std/Makefile +++ b/ghc/lib/std/Makefile @@ -28,7 +28,7 @@ MKDEPENDHS = $(GHC_INPLACE) LIBRARY = libHS$(_way).a LIBOBJS = $(HS_OBJS) ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" -LIBOBJS = $(filter-out PrelHugs.o,$(HS_OBJS)) +LIBOBJS = $(filter-out PrelHugs.$(way_)o,$(HS_OBJS)) endif #-----------------------------------------------------------------------------