From 508e074a320cab94997b1e3a2a6a3c6c2d0501ac Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Tue, 27 May 2025 14:48:48 +0200 Subject: [PATCH] CI: vtest: Fix the build script to properly work on MaOS "config.h" header file is new in VTest2 and includes must be adapted to be able to build VTest on MacOS. Let's add "-I." to make it work. --- scripts/build-vtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-vtest.sh b/scripts/build-vtest.sh index 3da427622..f74da3145 100755 --- a/scripts/build-vtest.sh +++ b/scripts/build-vtest.sh @@ -24,7 +24,7 @@ set -e # temporarily detect Apple Silicon (it's using /opt/homebrew instead of /usr/local) # if test -f /opt/homebrew/include/pcre2.h; then - make -j${CPUS} FLAGS="-O2 -s -Wall" INCS="-Isrc -Ilib -I/usr/local/include -I/opt/homebrew/include -pthread" + make -j${CPUS} FLAGS="-O2 -s -Wall" INCS="-I. -Isrc -Ilib -I/usr/local/include -I/opt/homebrew/include -pthread" else make -j${CPUS} FLAGS="-O2 -s -Wall" fi