From 5cf5885895c18aa950db1023da48bb5d509f1dc9 Mon Sep 17 00:00:00 2001 From: "Yury V. Zaytsev" Date: Fri, 9 Aug 2013 08:51:17 +0200 Subject: [PATCH] windows: bump missingh version in the autobuilder script Signed-off-by: Yury V. Zaytsev --- standalone/windows/build.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/standalone/windows/build.sh b/standalone/windows/build.sh index f62bc14a05..6b9cdd3ff5 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 ..