diff options
author | simonmar <unknown> | 2005-07-28 11:46:28 +0000 |
---|---|---|
committer | simonmar <unknown> | 2005-07-28 11:46:28 +0000 |
commit | 6edd4302fab7c5594284f122679f0368f2dbcf55 (patch) | |
tree | bcdbcdabccc35ff5b0d326eeb64611563f0ff8bf | |
parent | 498c27f87c0f9a463b4ed5f838351cc65ea04572 (diff) | |
download | haskell-6edd4302fab7c5594284f122679f0368f2dbcf55.tar.gz |
[project @ 2005-07-28 11:46:28 by simonmar]
Add Distribution.Compat.FilePath to the relevant places.
-rw-r--r-- | ghc/lib/compat/Makefile | 2 | ||||
-rw-r--r-- | ghc/lib/compat/compat.mk | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/ghc/lib/compat/Makefile b/ghc/lib/compat/Makefile index 654411d721..943b56ce6d 100644 --- a/ghc/lib/compat/Makefile +++ b/ghc/lib/compat/Makefile @@ -44,6 +44,7 @@ ifeq "$(ghc_ge_603)" "YES" # These modules are all provided in GHC 6.3+ EXCLUDED_SRCS += \ System/Directory/Internals.hs \ + Distribution/Compat/FilePath.hs \ Distribution/Compat/ReadP.hs \ Distribution/GetOpt.hs \ Distribution/InstalledPackageInfo.hs \ @@ -56,6 +57,7 @@ EXCLUDED_SRCS += \ SRC_MKDEPENDHS_OPTS += \ -optdep--exclude-module=System.Directory.Internals \ + -optdep--exclude-module=Distribution.Compat.FilePath \ -optdep--exclude-module=Distribution.Compat.ReadP \ -optdep--exclude-module=Distribution.GetOpt \ -optdep--exclude-module=Distribution.InstalledPackageInfo \ diff --git a/ghc/lib/compat/compat.mk b/ghc/lib/compat/compat.mk index 6eb9170a37..98120a3aef 100644 --- a/ghc/lib/compat/compat.mk +++ b/ghc/lib/compat/compat.mk @@ -24,6 +24,7 @@ endif SRC_MKDEPENDHS_OPTS += \ -optdep--exclude-module=Compat.RawSystem \ -optdep--exclude-module=Compat.Directory \ + -optdep--exclude-module=Distribution.Compat.FilePath \ -optdep--exclude-module=Distribution.Compat.ReadP \ -optdep--exclude-module=Distribution.Extension \ -optdep--exclude-module=Distribution.GetOpt \ |