Add 8.23 - Build acl

This commit is contained in:
Aditya 2023-01-11 11:45:33 +05:30
parent 8f71d6c33b
commit 1fc4fdf399
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,27 @@
#!/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

View file

@ -810,3 +810,15 @@ then
stop_script "chapter8/8.22-attr.sh"
fi
# Chapter 8.23
# ============
echo "Building acl"
su -c "bash $SCRIPT/chapter8/8.23-acl.sh"
# Exit on error
check_exit_code
if [ $exit_status -ne 0 ]
then
stop_script "chapter8/8.23-acl.sh"
fi