disable xmpp
This commit is contained in:
parent
86912bc498
commit
74529501ba
1 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue