From f07de707c15019da38da32f79515b3213ce76f5f Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Tue, 11 Nov 2025 07:15:32 +0000 Subject: [PATCH] fix(ci): create compatibility symlinks for older automake version Replace `brew link --overwrite automake` with explicit symlinks for aclocal-1.16 and automake-1.16 to ensure compatibility with build scripts that reference specific automake versions. --- .github/workflows/ffmpeg.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ffmpeg.yml b/.github/workflows/ffmpeg.yml index 6e889e5..f8788a5 100644 --- a/.github/workflows/ffmpeg.yml +++ b/.github/workflows/ffmpeg.yml @@ -54,7 +54,10 @@ jobs: run: | brew update brew install yasm autoconf ragel meson nasm automake libtool - brew link --overwrite automake + # Create compatibility symlinks for older automake version references + ln -sf $(which aclocal) /usr/local/bin/aclocal-1.16 + ln -sf $(which automake) /usr/local/bin/automake-1.16 + - name: Create build directory run: mkdir -p build