From 2147db1c149c4ab667d35b8513dee37f49dfdc04 Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Thu, 2 Jan 2025 15:53:24 -0800 Subject: [PATCH] ci(bsd): libcheck linking fix Signed-off-by: Robin H. Johnson --- .github/workflows/bsd.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bsd.yaml b/.github/workflows/bsd.yaml index fcd335c..ac250d2 100644 --- a/.github/workflows/bsd.yaml +++ b/.github/workflows/bsd.yaml @@ -32,7 +32,7 @@ jobs: set -e # exit on any failure below ./autogen.sh # We need to use /usr/local/include/check.h - CFLAGS="-g -O2 -I/usr/local/include" ./configure --with-check || exit 1 + CFLAGS="-g -O2 -I/usr/local/include" LDFLAGS="-L/usr/local/lib" ./configure --with-check || exit 1 make -j $(nproc) all || exit 1 make -j $(nproc) check || exit 1 make -j $(nproc) dist-xz || exit 1