From e079acbeb4282b085a90c8c85bde4e339ce7c69e Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Fri, 17 Feb 2023 13:05:02 +0100 Subject: [PATCH] CI macOS: add readline to PKG_CONFIG_PATH brew port readline is no longer liked to system path by default. Fixes failed build: https://github.com/MartinPulec/UltraGrid/actions/runs/4202715324/jobs/7291225396 --- .github/scripts/macOS/prepare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/macOS/prepare.sh b/.github/scripts/macOS/prepare.sh index 5967e0ee3..9cc1fe28d 100755 --- a/.github/scripts/macOS/prepare.sh +++ b/.github/scripts/macOS/prepare.sh @@ -12,7 +12,7 @@ LIBRARY_PATH=/usr/local/lib:/usr/local/opt/qt/lib printf "%b" \ "CPATH=$CPATH\n"\ "LIBRARY_PATH=$LIBRARY_PATH\n" >> "$GITHUB_ENV" -echo "PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/local/opt/qt/lib/pkgconfig" >> "$GITHUB_ENV" +echo "PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/local/opt/qt/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig" >> "$GITHUB_ENV" echo "/usr/local/opt/qt/bin" >> "$GITHUB_PATH" echo "DYLIBBUNDLER_FLAGS=$DYLIBBUNDLER_FLAGS" >> "$GITHUB_ENV"