From 547c57b7394489a627f1433fda160b180b5214b4 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 22 Nov 2004 17:00:54 +0000 Subject: [PATCH] [project @ 2004-11-22 17:00:54 by simonmar] Fix mkdependHS behaviour --- ghc/utils/ghc-pkg/Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/ghc/utils/ghc-pkg/Makefile b/ghc/utils/ghc-pkg/Makefile index cda1fbb..ac372b7 100644 --- a/ghc/utils/ghc-pkg/Makefile +++ b/ghc/utils/ghc-pkg/Makefile @@ -13,7 +13,6 @@ ghc_ge_504 = $(shell if (test $(GhcCanonVersion) -ge 504); then echo YES; else e SRC_HC_OPTS += -cpp -Wall -fno-warn-name-shadowing -fno-warn-unused-matches -SRC_HC_OPTS += -I$(FPTOOLS_TOP)/libraries SRC_HC_OPTS += -i$(GHC_LIB_COMPAT_DIR) SRC_LD_OPTS += -L$(GHC_LIB_COMPAT_DIR) -lghccompat @@ -38,6 +37,17 @@ HS_PROG = ghc-pkg.bin INSTALL_LIBEXECS += $(HS_PROG) endif +# This is horrible. We ought to be able to omit the entire directory +# from mkDependHS. +SRC_MKDEPENDHS_OPTS += \ + -optdep--exclude-module=Compat.Directory \ + -optdep--exclude-module=Distribution.Compat.ReadP \ + -optdep--exclude-module=Distribution.Package \ + -optdep--exclude-module=Distribution.InstalledPackageInfo \ + -optdep--exclude-module=Distribution.Package \ + -optdep--exclude-module=Distribution.License \ + -optdep--exclude-module=Distribution.Version + # -----------------------------------------------------------------------------= # Create the Version.hs file -- 1.7.10.4