From 9a1114e3e6d90308c66b68f59f2e25e7912c0127 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 5 Mar 2003 10:22:22 +0000 Subject: [PATCH] [project @ 2003-03-05 10:22:22 by simonmar] Duh. hsc2hs should be in $(GhcBinDistShScripts), not $(GhcBinDistBins), otherwise it doesn't get the right directories tacked on the front at installation time. Strange that nobody complained that hsc2hs wasn't working from a binary dist *shrug*. --- ghc/mk/config.mk | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ghc/mk/config.mk b/ghc/mk/config.mk index 7b85988..e334861 100644 --- a/ghc/mk/config.mk +++ b/ghc/mk/config.mk @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: config.mk,v 1.18 2002/07/02 13:56:22 simonmar Exp $ +# $Id: config.mk,v 1.19 2003/03/05 10:22:22 simonmar Exp $ # # GHC project configuration # @@ -10,14 +10,16 @@ # what to include in a binary distribution GhcMainDir = ghc GhcBinDistDirs = ghc libraries hslibs + ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32" -GhcBinDistShScripts = ghc-$(ProjectVersion) ghci-$(ProjectVersion) ghc-pkg-$(ProjectVersion) +GhcBinDistShScripts = ghc-$(ProjectVersion) ghci-$(ProjectVersion) ghc-pkg-$(ProjectVersion) hsc2hs else -GhcBinDistShScripts= +GhcBinDistShScripts = endif + GhcBinDistPrlScripts = GhcBinDistLibPrlScripts = ghc-asm ghc-split -GhcBinDistBins = hp2ps ghcprof hsc2hs DrIFT DtdToHaskell Xtract +GhcBinDistBins = hp2ps ghcprof DrIFT DtdToHaskell Xtract GhcBinDistLinks = ghc ghci ghc-pkg include $(GhcMainDir)/mk/version.mk -- 1.7.10.4