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 /README.md | |
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 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -293,7 +293,7 @@ Here's how to install them on some common platforms: <pre> <strong>Alpine Linux</strong> -# apk add acl{,-dev} attr{,-dev} libcap{,-dev} liburing-dev oniguruma-dev +# apk add acl{,-dev} attr libcap{,-dev} liburing-dev oniguruma-dev <strong>Arch Linux</strong> # pacman -S acl attr libcap liburing oniguruma @@ -302,13 +302,13 @@ Here's how to install them on some common platforms: # apt install acl libacl1-dev attr libattr1-dev libcap2-bin libcap-dev liburing-dev libonig-dev <strong>Fedora</strong> -# dnf install acl libacl-devel libattr-devel libcap-devel liburing-devel oniguruma-devel +# dnf install acl libacl-devel attr libcap-devel liburing-devel oniguruma-devel <strong>NixOS</strong> # nix-env -i acl attr libcap liburing oniguruma <strong>Void Linux</strong> -# xbps-install -S acl-{devel,progs} attr-{devel,progs} libcap-{devel,progs} liburing-devel oniguruma-devel +# xbps-install -S acl-{devel,progs} attr-progs libcap-{devel,progs} liburing-devel oniguruma-devel <strong>Homebrew</strong> $ brew install oniguruma |