diff options
author | Simon Marlow <marlowsd@gmail.com> | 2010-01-13 21:03:11 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2010-01-13 21:03:11 +0000 |
commit | 42ffa0bbd00cb8fafa50e906f38951adf0986f7e (patch) | |
tree | ec0c469f0cc51d52623f547055f3e7f0df4ca00c /utils/ghc-cabal | |
parent | f3c529f27f03934902efaba0fdbaff92ee098d3e (diff) | |
download | haskell-42ffa0bbd00cb8fafa50e906f38951adf0986f7e.tar.gz |
hide modules properly with haddock
Diffstat (limited to 'utils/ghc-cabal')
-rw-r--r-- | utils/ghc-cabal/ghc-cabal.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/ghc-cabal/ghc-cabal.hs b/utils/ghc-cabal/ghc-cabal.hs index 2e967e935b..489be4ad29 100644 --- a/utils/ghc-cabal/ghc-cabal.hs +++ b/utils/ghc-cabal/ghc-cabal.hs @@ -336,6 +336,7 @@ generate config_args distdir directory let variablePrefix = directory ++ '_':distdir let xs = [variablePrefix ++ "_VERSION = " ++ display (pkgVersion (package pd)), variablePrefix ++ "_MODULES = " ++ unwords (map display modules), + variablePrefix ++ "_HIDDEN_MODULES = " ++ unwords (map display (otherModules bi)), variablePrefix ++ "_SYNOPSIS =" ++ synopsis pd, variablePrefix ++ "_HS_SRC_DIRS = " ++ unwords (hsSourceDirs bi), variablePrefix ++ "_DEPS = " ++ unwords (map display dep_ids), |