Skip to content

Commit

Permalink
ci(bsd): libcheck linking fix
Browse files Browse the repository at this point in the history
Signed-off-by: Robin H. Johnson <[email protected]>
  • Loading branch information
robbat2 committed Jan 2, 2025
1 parent bc22c83 commit 2147db1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bsd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2147db1

Please sign in to comment.