From b154361e24d41d4d42d180054eb6e88903b95fe6 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Fri, 25 Jul 2014 14:41:11 +0000 Subject: [PATCH] gf.cabal: fix depend in --flags=-custom-binary case MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Detected when building today: Building gf-3.6... Preprocessing library gf-3.6... src/runtime/haskell/PGF/Internal.hs:17:8: Could not find module ‘Data.Binary.IEEE754’ It is a member of the hidden package ‘data-binary-ieee754-0.4.4’. Perhaps you need to add ‘data-binary-ieee754’ to the build-depends in your .cabal file. --- gf.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gf.cabal b/gf.cabal index 63d36976b..23c8046a5 100644 --- a/gf.cabal +++ b/gf.cabal @@ -86,7 +86,7 @@ Library Data.Binary.Builder Data.Binary.IEEE754 else - build-depends: binary + build-depends: binary, data-binary-ieee754 ghc-options: -fwarn-unused-imports if impl(ghc>=7.8)