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.
Prepare Acl for compilation:
./configure --prefix=/usr \ --disable-static \ --docdir=/usr/share/doc/acl-2.3.1
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 check after Coreutils has been built later in this chapter.
Install the package:
make install
Clean previous build:
make distclean
Prepare Xz for compilation:
CC="gcc -m32" ./configure \ --prefix=/usr \ --disable-static \ --libdir=/usr/lib32 \ --libexecdir=/usr/lib32 \ --host=i686-pc-linux-gnu
Compile the package:
make
Install the package:
make DESTDIR=$PWD/DESTDIR install cp -Rv DESTDIR/usr/lib32/* /usr/lib32 rm -rf DESTDIR
Clean previous build:
make distclean
Prepare Xz for compilation:
CC="gcc -mx32" ./configure \ --prefix=/usr \ --disable-static \ --libdir=/usr/libx32 \ --libexecdir=/usr/libx32 \ --host=x86_64-pc-linux-gnux32
Compile the package:
make
Install the package:
make DESTDIR=$PWD/DESTDIR install cp -Rv DESTDIR/usr/libx32/* /usr/libx32 rm -rf DESTDIR