From 3bbf5af3b7a9b91f0a36e7d625de2bd8152c621f Mon Sep 17 00:00:00 2001 From: Shun Wang Date: Mon, 24 Nov 2025 09:35:07 +0800 Subject: [PATCH] test: fix build test on macOS Removed unnecessary installation of gettext package in build process. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af44d4f..d996f9c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: - name: Add repository run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test" - name: Install packages - run: sudo apt install gettext gcc-9 gcc-10 gcc-11 gcc-12 + run: sudo apt install gcc-9 gcc-10 gcc-11 gcc-12 - uses: actions/checkout@v2 - name: Autoconf run: autoreconf -i -f @@ -46,7 +46,7 @@ jobs: run: brew install automake libtool - uses: actions/checkout@v2 - name: Autoconf - run: autoreconf -i -f -I $(brew --prefix)/share/gettext/m4 + run: autoreconf -i -f - name: Configure run: ./configure env: