ignore expected failure

autobuilder must have a *really* weird sh
This commit is contained in:
Joey Hess 2013-12-05 21:28:34 -04:00
parent eed6809525
commit 416a1d0cf0
2 changed files with 2 additions and 2 deletions

View file

@ -29,6 +29,6 @@ withcyg cabal build || true
# Works around link failure https://ghc.haskell.org/trac/ghc/ticket/8596
# using a response file.
withcyg rm -f build.log gcc.opt
withcyg cabal build --ghc-options='-v -keep-tmp-files' > build.log 2>&1
withcyg cabal build --ghc-options='-v -keep-tmp-files' > build.log 2>&1 || true
withcyg grep '"dist\\build\\git-annex\\git-annex.exe"' build.log | sed -e 's/^"[^"]*" //' -e 's/\\/\//g' > gcc.opt
"$HP/mingw/bin/gcc.exe" @gcc.opt

View file

@ -51,7 +51,7 @@ withcyg cabal build || true
# Works around link failure https://ghc.haskell.org/trac/ghc/ticket/8596
# using a response file.
rm -f build.log gcc.opt
withcyg cabal build --ghc-options='-v -keep-tmp-files' > build.log 2>&1
withcyg cabal build --ghc-options='-v -keep-tmp-files' > build.log 2>&1 || true
grep '"dist\\build\\git-annex\\git-annex.exe"' build.log | sed -e 's/^"[^"]*" //' -e 's/\\/\//g' > gcc.opt
"$HP/mingw/bin/gcc.exe" @gcc.opt