diff options
author | Kyle <Kyle@web> | 2014-12-07 23:21:14 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2014-12-07 23:21:14 +0000 |
commit | 543b83fd8a5e49088b06c07caaa1ad6e4e48195d (patch) | |
tree | d245896d1a25b5e8962fad3d4271471fc3ed55c6 | |
parent | e0220e3d474e09376630ac02e8c9aa70a0172eb1 (diff) |
-rw-r--r-- | doc/bugs/Build_error_when_S3_is_disabled.mdwn | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/bugs/Build_error_when_S3_is_disabled.mdwn b/doc/bugs/Build_error_when_S3_is_disabled.mdwn new file mode 100644 index 000000000..9b72afe07 --- /dev/null +++ b/doc/bugs/Build_error_when_S3_is_disabled.mdwn @@ -0,0 +1,37 @@ +With release 5.20141203, I'm getting the following build error. + + Remote/Helper/AWS.hs:15:18: + Could not find module ‘Aws’ + Use -v to see a list of the files searched for. + + Remote/Helper/AWS.hs:16:18: + Could not find module ‘Aws.S3’ + Use -v to see a list of the files searched for. + +I'm installing dependencies with cabal but have disabled S3 support +('-f-S3'). This setup has worked for previous releases (I'm on a machine running Arch Linux). + + _features=(-f-Android + -f-Assistant + -fDbus + -fDNS + -fInotify + -fPairing + -fProduction + -f-S3 + -fTestSuite + -fTDFA + -f-Webapp + -f-WebDAV + -fXMPP + -fFeed + -fQuvi + -fCryptoHash) + + cabal update + cabal install c2hs + + cabal install --user --force-reinstalls --only-dependencies "${_features[@]}" + cabal configure "${_features[@]}" + + make |