From 746e85538b187533bd59aceb87948fd3d1e85105 Mon Sep 17 00:00:00 2001 From: nu774 Date: Mon, 6 May 2024 00:53:43 +0900 Subject: [PATCH] fix ci: specify PKG_CONFIG_LIBPATH for MinGW cross --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eaf7ec9..17b866c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: - name: Build run: | autoreconf -fiv - ./configure --host=${{ matrix.arch }}-w64-mingw32 --prefix=/usr/${{ matrix.arch }}-w64-mingw32 + PKG_CONFIG_LIBPATH=/usr/${{ matrix.arch }}-w64-mingw32/lib/pkgconfig ./configure --host=${{ matrix.arch }}-w64-mingw32 --prefix=/usr/${{ matrix.arch }}-w64-mingw32 make -j2 sudo make install