From 60deb53b520044a119ad89149b22fa59e2f9de70 Mon Sep 17 00:00:00 2001 From: Christian Garbs Date: Sun, 26 Jan 2025 09:34:57 +0100 Subject: [PATCH] fix MacOS build pipeline libintl.h needs special magic to be found --- .github/workflows/build_macos.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_macos.yml b/.github/workflows/build_macos.yml index 0f3226e..bec51d4 100644 --- a/.github/workflows/build_macos.yml +++ b/.github/workflows/build_macos.yml @@ -25,6 +25,8 @@ jobs: - name: Install dependencies run: | brew install sdl2 + # gettext is a keg-only install so the headers are missing by default + brew unlink gettext && brew link gettext --force - name: Build and test env: CC: ${{ matrix.compiler }}