Skip to content

Commit

Permalink
downgrade autoconf to 2.69
Browse files Browse the repository at this point in the history
Workaround for #502
  • Loading branch information
Mistuke authored Jul 27, 2021
1 parent c6bf9c9 commit a19d08a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ jobs:
- if: matrix.os == 'windows-latest'
shell: msys2 {0}
run: autoreconf -i
# Temporary hack to get around #502 while cabal is fixed.
# Force autoconf to 2.69, remove when cabal fixed.
- if: matrix.os == 'windows-latest'
shell: msys2 {0}
run: |
pacman -R autoconf
wget http://repo.msys2.org/msys/x86_64/autoconf-2.69-5-any.pkg.tar.xz
pacman -U autoconf-2.69-5-any.pkg.tar.xz
- if: matrix.os != 'windows-latest'
run: |
autoreconf -i
Expand Down

0 comments on commit a19d08a

Please sign in to comment.