aboutsummaryrefslogtreecommitdiff
path: root/standalone
diff options
context:
space:
mode:
authorGravatar Yury V. Zaytsev <yury@shurup.com>2013-08-09 08:51:17 +0200
committerGravatar Yury V. Zaytsev <yury@shurup.com>2013-08-09 08:51:17 +0200
commit89a9a79d71f62a06e5ab09c0df181e4adbaa027d (patch)
tree5ed4e264d16ba20a68544c903fcc8190b1bcf0e0 /standalone
parentc891f9c8454479791989b52ce5f42ad801b99c2e (diff)
windows: bump missingh version in the autobuilder script
Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
Diffstat (limited to 'standalone')
-rw-r--r--standalone/windows/build.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/standalone/windows/build.sh b/standalone/windows/build.sh
index f62bc14a0..6b9cdd3ff 100644
--- a/standalone/windows/build.sh
+++ b/standalone/windows/build.sh
@@ -26,10 +26,12 @@ rm -f git-annex-installer.exe
# for haskell libraries to link them with the cygwin library.
cabal update || true
-rm -rf MissingH-1.2.0.0
+MISSINGH_VERSION="1.2.0.1"
+
+rm -rf MissingH-${MISSINGH_VERSION}
cabal unpack MissingH
-cd MissingH-1.2.0.0
-withcyg patch -p1 <../standalone/windows/haskell-patches/MissingH_1.2.0.0-0001-hack-around-strange-build-problem-in-jenkins-autobui.patch
+cd MissingH-${MISSINGH_VERSION}
+#withcyg patch -p1 <../standalone/windows/haskell-patches/MissingH_1.2.0.0-0001-hack-around-strange-build-problem-in-jenkins-autobui.patch
cabal install || true
cd ..