[commit: haddock] ghc-head, ghc-head1, headdock-library-1.4.5, ie_avails, master, pr/cabal-desc, v2.18, wip/revert-ttg-2017-11-20, wip/ttg-2017-10-13, wip/ttg-2017-10-31, wip/ttg-2017-11-06, wip/ttg2-2017-11-10, wip/ttg3-2017-11-12, wip/ttg4-constraints-2017-11-13: Avoid missing home module warning (#652) (49a0088)

git at git.haskell.org git at git.haskell.org
Mon Nov 20 21:08:59 UTC 2017


Repository : ssh://git@git.haskell.org/haddock

On branches: ghc-head,ghc-head1,headdock-library-1.4.5,ie_avails,master,pr/cabal-desc,v2.18,wip/revert-ttg-2017-11-20,wip/ttg-2017-10-13,wip/ttg-2017-10-31,wip/ttg-2017-11-06,wip/ttg2-2017-11-10,wip/ttg3-2017-11-12,wip/ttg4-constraints-2017-11-13
Link       : http://git.haskell.org/haddock.git/commitdiff/49a00880ad9bf0405f7da393d9e91523ec70fd2e

>---------------------------------------------------------------

commit 49a00880ad9bf0405f7da393d9e91523ec70fd2e
Author: Alex Biehl <alexbiehl at gmail.com>
Date:   Sat Jul 8 00:33:12 2017 +0200

    Avoid missing home module warning (#652)
    
    * Avoid missing home module warning
    
    * Update haddock-library.cabal


>---------------------------------------------------------------

49a00880ad9bf0405f7da393d9e91523ec70fd2e
 haddock-api/haddock-api.cabal         |  2 ++
 haddock-library/haddock-library.cabal | 17 ++++++++++++++++-
 haddock.cabal                         |  7 +++++++
 3 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/haddock-api/haddock-api.cabal b/haddock-api/haddock-api.cabal
index 15215cd..504a0ca 100644
--- a/haddock-api/haddock-api.cabal
+++ b/haddock-api/haddock-api.cabal
@@ -113,6 +113,8 @@ test-suite spec
 
   other-modules:
     Haddock.Backends.Hyperlinker.ParserSpec
+    Haddock.Backends.Hyperlinker.Parser
+    Haddock.Backends.Hyperlinker.Types
 
   build-depends:
       base
diff --git a/haddock-library/haddock-library.cabal b/haddock-library/haddock-library.cabal
index a293039..3b11761 100644
--- a/haddock-library/haddock-library.cabal
+++ b/haddock-library/haddock-library.cabal
@@ -64,9 +64,24 @@ test-suite spec
       -DTEST
 
   other-modules:
+      Data.Attoparsec.ByteString
+      Data.Attoparsec.ByteString.Buffer
+      Data.Attoparsec.ByteString.Char8
+      Data.Attoparsec.ByteString.FastSet
+      Data.Attoparsec.ByteString.Internal
+      Data.Attoparsec.Combinator
+      Data.Attoparsec.Internal
+      Data.Attoparsec.Internal.Fhthagn
+      Data.Attoparsec.Internal.Types
+      Documentation.Haddock.Doc
+      Documentation.Haddock.Parser
+      Documentation.Haddock.Parser.Monad
+      Documentation.Haddock.Parser.Util
+      Documentation.Haddock.Parser.UtilSpec
       Documentation.Haddock.ParserSpec
+      Documentation.Haddock.Types
+      Documentation.Haddock.Utf8
       Documentation.Haddock.Utf8Spec
-      Documentation.Haddock.Parser.UtilSpec
 
   build-depends:
       base
diff --git a/haddock.cabal b/haddock.cabal
index e3c17a0..fa431db 100644
--- a/haddock.cabal
+++ b/haddock.cabal
@@ -126,11 +126,18 @@ executable haddock
     -- we pin down to a single haddock-api version.
     build-depends:  haddock-api == 2.18.0
 
+    other-modules:
+      ResponseFile
+
 test-suite driver-test
   type:             exitcode-stdio-1.0
   default-language: Haskell2010
   main-is:          Main.hs
   hs-source-dirs:   driver-test, driver
+  other-modules:
+    ResponseFile
+    ResponseFileSpec
+
   build-depends:    base, hspec
 
 test-suite html-test



More information about the ghc-commits mailing list