work around strange MissingH build fail on windows, that I cannot reproduce here

This commit is contained in:
Joey Hess 2013-05-17 13:10:41 -04:00
parent 74529501ba
commit 00aa861b39
2 changed files with 67 additions and 2 deletions

View file

@ -17,10 +17,17 @@ incygwin () {
}
# 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.
cabal update
rm -rf MissingH-1.2.0.0
cabal unpack MissingH
cd MissingH-1.2.0.0
incygwin patch -p1 <../standalone/windows/haskell-patches/MissingH_1.2.0.0-0001-hack-around-strange-build-problem-in-jenkins-autobui.patch
cabal install --reinstall
cd ..
cabal install --only-dependencies -f"$FLAGS"
# Build git-annex