From: simonmar Date: Tue, 12 Feb 2002 15:45:46 +0000 (+0000) Subject: [project @ 2002-02-12 15:45:46 by simonmar] X-Git-Tag: Approximately_9120_patches~92 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=70977366e35234a268bf2d95a040a0c16bf5744e;hp=9d037f55558adc766721e3e7641616cc55d87d61 [project @ 2002-02-12 15:45:46 by simonmar] Use LIBOBJS rather than OBJS when building the GHCi library. --- diff --git a/mk/package.mk b/mk/package.mk index da8712f..f16cc5e 100644 --- a/mk/package.mk +++ b/mk/package.mk @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: package.mk,v 1.1 2002/02/12 15:17:35 simonmar Exp $ +# $Id: package.mk,v 1.2 2002/02/12 15:45:46 simonmar Exp $ ifneq "$(PACKAGE)" "" @@ -93,8 +93,8 @@ ifneq "$(DONT_WANT_STD_GHCI_LIB_RULE)" "YES" # hslibs/Win32 uses this 'feature', which will go away soon # when we can use a "fixed" ld. # -$(GHCI_LIBRARY) : $(OBJS) - $(LD) -r $(LD_X) -o $@ $(OBJS) +$(GHCI_LIBRARY) : $(LIBOBJS) + $(LD) -r $(LD_X) -o $@ $(LIBOBJS) endif # DONT_WANT_STD_GHCI_LIB_RULE endif # GhcWithInterpreter