fix libtool

This commit is contained in:
Evan Miller 2022-12-17 05:06:55 -05:00
parent 9e35bf104c
commit 58eb5657cc

View File

@ -108,6 +108,11 @@ jobs:
MDBPATH: test/data MDBPATH: test/data
windows: windows:
runs-on: windows-latest runs-on: windows-latest
strategy:
fail-fast: false
matrix:
iconv: [ enable-iconv, disable-iconv]
glib: [ enable-glib, disable-glib ]
defaults: defaults:
run: run:
shell: msys2 {0} shell: msys2 {0}
@ -120,13 +125,16 @@ jobs:
base-devel base-devel
gcc gcc
git git
glib2
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Check out test data - name: Check out test data
run: git clone https://github.com/mdbtools/mdbtestdata.git test run: git clone https://github.com/mdbtools/mdbtestdata.git test
- name: Autoconf - name: Autoconf
run: autoreconf -i -f run: autoreconf -i -f
- name: Fix libtool
run: sed -i s/_spawnv/spawn/ libtool
- name: Configure - name: Configure
run: ./configure run: ./configure --${{ matrix.glib }} --${{ matrix.iconv }}
- name: Make - name: Make
run: make run: make
- name: Test - name: Test