Skip to content

Commit

Permalink
ci/alpine: Fix build error due missing package
Browse files Browse the repository at this point in the history
Alpine fails because libacl is not installable on 3.21:

apk add acl-dev asciidoc asciidoctor autoconf automake clang gcc git
keyutils-dev libaio-dev libacl libcap-dev libselinux-dev libsepol-dev
libtirpc-dev linux-headers make musl-dev numactl-dev openssl-dev
perl-json pkgconfig
ERROR: unable to select packages:
  libacl (no such package):
    required by: world[libacl]

We actually need also the acl headers, thus install acl-dev,
which contains not only libacl.so, but also the headers and pkg-config
file.

Signed-off-by: Petr Vorel <[email protected]>
  • Loading branch information
pevik committed Dec 6, 2024
1 parent bde9fdc commit d46c9b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/alpine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ apk add \
clang \
gcc \
git \
acl-dev \
keyutils-dev \
libaio-dev \
libacl \
libcap-dev \
libselinux-dev \
libsepol-dev \
Expand Down

0 comments on commit d46c9b5

Please sign in to comment.