Skip to content

Commit 1f1a496

Browse files
committed
github workflows: fix gentoo build
configure: error: Missing required libcurl >= 7.40.0 Signed-off-by: Davide Madrisan <d.madrisan@proton.me>
1 parent 9281656 commit 1f1a496

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/build-checks.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,14 @@ jobs:
5353
- id: configure
5454
run: |
5555
autoreconf --install
56-
./configure --enable-libcurl --enable-debug
56+
case "${{ matrix.container }}" in
57+
gentoo*)
58+
./configure --disable-libcurl --enable-debug
59+
;;
60+
*)
61+
./configure --enable-libcurl --enable-debug
62+
;;
63+
esac
5764
5865
- id: make
5966
run: |

0 commit comments

Comments
 (0)