From 647dd39337f25781409d207870109b38eed0b045 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 6 Aug 2024 22:48:50 -0500 Subject: Add autoconf to macOS Signed-off-by: Matt Strapp --- .github/workflows/c.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml index 9b37af1..0618608 100644 --- a/.github/workflows/c.yml +++ b/.github/workflows/c.yml @@ -30,10 +30,13 @@ jobs: msystem: UCRT64 update: true install: autoconf mingw-w64-ucrt-x86_64-gcc + - name: Install autoconf on macOS + if: matrix.os == 'macos-latest' + run: brew install autoconf - name: Run Autoconf - run: autoreconf -fi + run: sh -c autoreconf -fi - name: Configure - run: ./configure + run: sh -c ./configure - name: Build run: make -- cgit v1.2.3