The Acl package contains utilities to administer Access Control Lists, which are used to define more fine-grained discretionary access rights for files and directories.
Modify the documentation directory so that it is a versioned directory:
sed -i -e 's|/@pkg_name@|&-@pkg_version@|' include/builddefs.in
Fix some broken tests:
sed -i "s:| sed.*::g" test/{sbits-restore,cp,misc}.test
Additionally, fix a bug that causes getfacl -e to segfault on overly long group name:
sed -i -e "/TABS-1;/a if (x > (TABS-1)) x = (TABS-1);" \ libacl/__acl_to_any_text.c
Prepare Acl for 32-bit compilation:
./configure --prefix=/usr \ --bindir=/bin \ --libexecdir=/usr/lib32 \ --libdir=/usr/lib32 \ --disable-static \ CC="gcc -m32"
Compile the package:
make
The Acl tests need to be run on a filesystem that supports access controls after Coreutils has been built with the Acl libraries. If desired, return to this package and run make -j1 tests after Coreutils has been built later in this chapter.
Install the package:
make install install-dev install-lib chmod -v 755 /usr/lib32/libacl.so
The shared library needs to be moved to /lib32
, and as a result the .so
file in /usr/lib32
will need to be recreated:
mv -v /usr/lib32/libacl.so.* /lib32 ln -sfv ../../lib32/$(readlink /usr/lib32/libacl.so) /usr/lib32/libacl.so
Clean up the build directory before moving on to the next platform:
make clean
Prepare Acl for x32 ABI compilation:
./configure --prefix=/usr \ --bindir=/bin \ --libexecdir=/usr/libx32 \ --libdir=/usr/libx32 \ --disable-static \ CC="gcc -mx32"
Compile the package:
make
The Acl tests need to be run on a filesystem that supports access controls after Coreutils has been built with the Acl libraries. If desired, return to this package and run make -j1 tests after Coreutils has been built later in this chapter.
Install the package:
make install install-dev install-lib chmod -v 755 /usr/libx32/libacl.so
The shared library needs to be moved to /libx32
, and as a result the .so
file in /usr/libx32
will need to be recreated:
mv -v /usr/libx32/libacl.so.* /libx32 ln -sfv ../../libx32/$(readlink /usr/libx32/libacl.so) /usr/libx32/libacl.so
Clean up the build directory before moving on to the next platform:
make clean
Prepare Acl for 64-bit compilation:
./configure --prefix=/usr \ --bindir=/bin \ --disable-static \ --libexecdir=/usr/lib
Compile the package:
make
The Acl tests need to be run on a filesystem that supports access controls after Coreutils has been built with the Acl libraries. If desired, return to this package and run make -j1 tests after Coreutils has been built later in this chapter.
Install the package:
make install install-dev install-lib chmod -v 755 /usr/lib/libacl.so
The shared library needs to be moved to /lib
, and as a result the .so
file in /usr/lib
will need to be recreated:
mv -v /usr/lib/libacl.so.* /lib ln -sfv ../../lib/$(readlink /usr/lib/libacl.so) /usr/lib/libacl.so