lfs-scripts/scripts/chapter8/8.23-acl.sh
2023-01-11 11:45:33 +05:30

27 lines
304 B
Bash

#!/bin/bash
cd /sources
tar xf acl-2.3.1.tar.xz
cd acl-2.3.1
./configure --prefix=/usr \
--disable-static \
--docdir=/usr/share/doc/acl-2.3.1
if [ $? -ne 0 ]
then
exit 1
fi
make -j5
if [ $? -ne 0 ]
then
exit 1
fi
make install
cd /sources
rm -rf acl-2.3.1