diff options
author | Joey Hess <joey@kitenet.net> | 2013-05-17 12:31:19 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-05-17 12:31:19 -0400 |
commit | fcfab84fd292d6534e4709b9ed1be03686d7b78f (patch) | |
tree | 523c096854b9976c311f79ddfda112fa4cabf475 /standalone | |
parent | c51f91b962aa79a4246b08ee16ad2c53a91e958a (diff) |
disable xmpp
Diffstat (limited to 'standalone')
-rw-r--r-- | standalone/windows/build.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/standalone/windows/build.sh b/standalone/windows/build.sh index 359a62806..1bab587f8 100644 --- a/standalone/windows/build.sh +++ b/standalone/windows/build.sh @@ -7,6 +7,7 @@ set -x set -e HP="/c/Program Files (x86)/Haskell Platform/2012.4.0.0" +FLAGS="-Webapp -Assistant -XMPP" PATH="$HP/bin:$HP/lib/extralibs/bin:$PATH" @@ -15,12 +16,14 @@ incygwin () { PATH="/c/cygwin/bin:$PATH" "$@" } -# Build git-annex +# Install haskell dependencies. cabal update +cabal list --installed # cabal install is not run in cygwin, because we don't want configure scripts # for haskell libraries to link them with the cygwin library. -FLAGS="-Webapp -Assistant" cabal install --only-dependencies -f"$FLAGS" + +# Build git-annex incygwin cabal configure -f"$FLAGS" incygwin cabal build |