summaryrefslogtreecommitdiff
path: root/doc/bugs/Build-depends_needs___39__hxt__39___added_-_3.20121127.mdwn
diff options
context:
space:
mode:
authorGravatar http://a-or-b.myopenid.com/ <http://a-or-b.myopenid.com/@web>2012-11-28 05:42:27 +0000
committerGravatar admin <admin@branchable.com>2012-11-28 05:42:27 +0000
commita3d5987c4f326a44935f31dae398e0897f28ec70 (patch)
tree4327075035d506db5fb1fb427271c81ebcf7a45a /doc/bugs/Build-depends_needs___39__hxt__39___added_-_3.20121127.mdwn
parent2fbb347b964b73020e6048879b193f2350576fee (diff)
Diffstat (limited to 'doc/bugs/Build-depends_needs___39__hxt__39___added_-_3.20121127.mdwn')
-rw-r--r--doc/bugs/Build-depends_needs___39__hxt__39___added_-_3.20121127.mdwn35
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/bugs/Build-depends_needs___39__hxt__39___added_-_3.20121127.mdwn b/doc/bugs/Build-depends_needs___39__hxt__39___added_-_3.20121127.mdwn
new file mode 100644
index 000000000..da624c08f
--- /dev/null
+++ b/doc/bugs/Build-depends_needs___39__hxt__39___added_-_3.20121127.mdwn
@@ -0,0 +1,35 @@
+What steps will reproduce the problem?
+
+Install git-annex via cabal - either from Hackage or as a manual install. (i.e. <http://git-annex.branchable.com/install/cabal/>)
+
+What is the expected output? What do you see instead?
+
+Expect a clean install.
+
+However, get the following error:
+
+ Assistant/Install.hs:24:8:
+ Could not find module `Data.AssocList'
+ It is a member of the hidden package `hxt-9.3.1.1'.
+ Perhaps you need to add `hxt' to the build-depends in your .cabal file.
+ Use -v to see a list of the files searched for.
+
+
+What version of git-annex are you using? On what operating system?
+
+git-annex: 3.20121127
+OS: Mac OSX 10.6.8
+
+Please provide any additional information below.
+
+The fix seems to be as simple as adding 'htx' to the 'git-annex.cabal' file:
+
+ Executable git-annex
+ Main-Is: git-annex.hs
+ Build-Depends: MissingH, hslogger, directory, filepath,
+ unix, containers, utf8-string, network (>= 2.0), mtl (>= 2.1.1),
+ bytestring, old-locale, time,
+ -- Added htx here
+ hxt,
+ pcre-light, extensible-exceptions, dataenc, SHA, process, json, HTTP,
+