Skip to content

Commit 43c1b7c

Browse files
authored
test: fix build test on macOS (#350)
Removed unnecessary installation of gettext package in build process.
1 parent f04c4e6 commit 43c1b7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Add repository
1111
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
1212
- name: Install packages
13-
run: sudo apt install gettext gcc-9 gcc-10 gcc-11 gcc-12
13+
run: sudo apt install gcc-9 gcc-10 gcc-11 gcc-12
1414
- uses: actions/checkout@v2
1515
- name: Autoconf
1616
run: autoreconf -i -f
@@ -46,7 +46,7 @@ jobs:
4646
run: brew install automake libtool
4747
- uses: actions/checkout@v2
4848
- name: Autoconf
49-
run: autoreconf -i -f -I $(brew --prefix)/share/gettext/m4
49+
run: autoreconf -i -f
5050
- name: Configure
5151
run: ./configure
5252
env:

0 commit comments

Comments
 (0)