diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-07 17:57:04 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-07 17:57:04 -0400 |
commit | 67fa028c81a199930f47e34d9d81beca30e5e230 (patch) | |
tree | b50ef7a18024d0a0b8eda44ca7924ae59b80d8c3 /standalone/android | |
parent | 389bd6f0276976c48a77cba21ec52ff937efc331 (diff) |
avoid broken version of DAV on android
Diffstat (limited to 'standalone/android')
-rwxr-xr-x | standalone/android/install-haskell-packages | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/standalone/android/install-haskell-packages b/standalone/android/install-haskell-packages index df3d492ea..7dadd72cb 100755 --- a/standalone/android/install-haskell-packages +++ b/standalone/android/install-haskell-packages @@ -27,8 +27,13 @@ cabalinstall () { patched () { pkg=$1 + ver=$2 shift 1 - cabal unpack $pkg + if [ -z "$ver" ]; then + cabal unpack $pkg + else + cabal unpack $pkg-$ver + fi cd $pkg* git init git config user.name dummy @@ -97,7 +102,7 @@ install_pkgs () { patched shakespeare-text patched process-conduit patched gnuidn - patched DAV + patched DAV-0.5.1 patched yesod-static patched uuid patched dns |