diff options
author | https://www.google.com/accounts/o8/id?id=AItOawkSq2FDpK2n66QRUxtqqdbyDuwgbQmUWus <Jimmy@web> | 2012-07-26 10:02:14 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2012-07-26 10:02:14 +0000 |
commit | c633739f468fd77d7bd7f48d948b08255849fc17 (patch) | |
tree | 4949b590ca87761dd49e4cc8d6d0bba97e5ab666 /doc/bugs/Missing_dependancy_in_commit_6cecc26206c4a539999b04664136c6f785211a41.mdwn | |
parent | fa8c41d251d82a23b01571562941bae2226f83a9 (diff) |
Diffstat (limited to 'doc/bugs/Missing_dependancy_in_commit_6cecc26206c4a539999b04664136c6f785211a41.mdwn')
-rw-r--r-- | doc/bugs/Missing_dependancy_in_commit_6cecc26206c4a539999b04664136c6f785211a41.mdwn | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/bugs/Missing_dependancy_in_commit_6cecc26206c4a539999b04664136c6f785211a41.mdwn b/doc/bugs/Missing_dependancy_in_commit_6cecc26206c4a539999b04664136c6f785211a41.mdwn new file mode 100644 index 000000000..a0e9ed845 --- /dev/null +++ b/doc/bugs/Missing_dependancy_in_commit_6cecc26206c4a539999b04664136c6f785211a41.mdwn @@ -0,0 +1,31 @@ +Seems commit 6cecc26206c4a539999b04664136c6f785211a41 missed on dependancy, that is blaze-markup + +<pre> +Assistant/Threads/WebApp.hs:25:8: + Could not find module `Text.Blaze.Renderer.String' + It is a member of the hidden package `blaze-markup-0.5.1.0'. + Perhaps you need to add `blaze-markup' to the build-depends in your .cabal file. + Use -v to see a list of the files searched for. +cabal: Error: some packages failed to install: +git-annex-3.20120721 failed during the building phase. The exception was: +ExitFailure 1 +</pre> + +This should fix it + +<pre> +x00:git-annex jtang$ git diff +diff --git a/git-annex.cabal b/git-annex.cabal +index c7d9bf5..4f98d2a 100644 +--- a/git-annex.cabal ++++ b/git-annex.cabal +@@ -76,7 +76,7 @@ Executable git-annex + if flag(Webapp) + Build-Depends: yesod, yesod-static, case-insensitive, http-types, + transformers, wai, wai-logger, warp, blaze-builder, blaze-html, +- crypto-api, hamlet ++ blaze-markup, crypto-api, hamlet + CPP-Options: -DWITH_WEBAPP + + if (os(darwin)) +</pre> |