diff options
author | David Waern <david.waern@gmail.com> | 2007-11-09 00:08:06 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2007-11-09 00:08:06 +0000 |
commit | 59b4958f99c0452e6c974f86533bcec3e28d4472 (patch) | |
tree | 9e3b81a66200b7116a1669e41cb8d2ddc0dc9c50 /libraries/base/Setup.hs | |
parent | 27fa0a48fd6c52f696a7337e69dc17e341ddd951 (diff) | |
download | haskell-59b4958f99c0452e6c974f86533bcec3e28d4472.tar.gz |
Filter out GHC.Prim also for the Haddock step
Please merge to the GHC 6.8.2 branch
Diffstat (limited to 'libraries/base/Setup.hs')
-rw-r--r-- | libraries/base/Setup.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libraries/base/Setup.hs b/libraries/base/Setup.hs index 78e56262f9..79c60e9024 100644 --- a/libraries/base/Setup.hs +++ b/libraries/base/Setup.hs @@ -22,7 +22,10 @@ main = do let hooks = defaultUserHooks { makefileHook = build_primitive_sources $ filter_modules_hook $ makefileHook defaultUserHooks, - instHook = filter_modules_hook + haddockHook = build_primitive_sources + $ filter_modules_hook + $ haddockHook defaultUserHooks, + instHook = filter_modules_hook $ instHook defaultUserHooks } defaultMainWithHooks hooks |