Skip to content

Commit

Permalink
local json include adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
GitMensch committed Sep 29, 2024
1 parent 17f1d8c commit 2e9ded3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/windows-msys1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,13 @@ jobs:
sed -i 'N;s/else/else :;/g' .\configure
sed -i 's/\} else \:;/} else/g' .\configure
sed -i 's/#else \:;/#else/g' .\configure
cp .\configure .\configure.bak
sed -i 's/-I\\"$srcdir/-I \\"$srcdir/g' .\configure
if diff ./configure ./configure.bak > /dev/null; then echo "no change 1"; fi
sed -i 's/-I\"$srcdir/-I \"$srcdir/g' .\configure
if diff ./configure ./configure.bak > /dev/null; then echo "no change 2"; fi
sed -i 's/-I\\"\$srcdir/-I \\"\$srcdir/g' .\configure
if diff ./configure ./configure.bak > /dev/null; then echo "no change 3"; fi
bash -lc "cd build && ../configure %CFGOPT% --with-db --with-xml2 --with-json=local --with-curses=pdcurses --prefix=/mingw"
- name: Upload config-${{ matrix.target }}.log
Expand Down

0 comments on commit 2e9ded3

Please sign in to comment.