diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-04 15:17:38 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-04 15:26:21 -0400 |
commit | 1109843d017e0320f0d18bfc398e27ff25592dfb (patch) | |
tree | 2748166ea80eeea9767c004151bec8f13b2c0d49 /.github/workflows/ci.yml | |
parent | 0219441e5911b35035e927846cd8a0af77324f07 (diff) | |
download | bfs-1109843d017e0320f0d18bfc398e27ff25592dfb.tar.xz |
build: Don't use libattr
We only rely on interfaces like listxattr() which are provided by the C
library itself.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c1c89c..8e688fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,8 +23,6 @@ jobs: libacl1-dev \ libacl1:i386 \ attr \ - libattr1-dev \ - libattr1:i386 \ libcap2-bin \ libcap-dev \ libcap2:i386 \ @@ -34,7 +32,6 @@ jobs: # Ubuntu doesn't let you install the -dev packages for both amd64 and # i386 at once, so we make our own symlinks to fix -m32 -lacl -l... sudo ln -s libacl.so.1 /lib/i386-linux-gnu/libacl.so - sudo ln -s libattr.so.1 /lib/i386-linux-gnu/libattr.so sudo ln -s libcap.so.2 /lib/i386-linux-gnu/libcap.so sudo ln -s libonig.so.5 /lib/i386-linux-gnu/libonig.so # Work around https://github.com/actions/runner-images/issues/9491 |