diff options
author | Ian Lynagh <igloo@earth.li> | 2011-06-09 13:22:16 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-06-09 13:29:13 +0100 |
commit | cba098d7823815baa66bcaff7e4f8b54855ae6eb (patch) | |
tree | bcc201d8241a0da74b606c7e848a8000945ae6fe /utils/ghc-pkg | |
parent | 237fea9fd27a276f6674c76e2eeff0c6634576dd (diff) | |
download | haskell-cba098d7823815baa66bcaff7e4f8b54855ae6eb.tar.gz |
Fix build
Diffstat (limited to 'utils/ghc-pkg')
-rw-r--r-- | utils/ghc-pkg/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ghc-pkg/Main.hs b/utils/ghc-pkg/Main.hs index 8e08c4fb97..be59aa93c7 100644 --- a/utils/ghc-pkg/Main.hs +++ b/utils/ghc-pkg/Main.hs @@ -679,7 +679,7 @@ mungePackagePaths top_dir pkgroot pkg = frameworkDirs = munge_paths (frameworkDirs pkg), haddockInterfaces = munge_paths (haddockInterfaces pkg), -- haddock-html is allowed to be either a URL or a file - haddockHTMLs = munge_path (munge_urls (haddockHTMLs pkg)) + haddockHTMLs = munge_paths (munge_urls (haddockHTMLs pkg)) } where munge_paths = map munge_path |