Add 8.44 - Build autoconf

This commit is contained in:
Aditya 2023-01-12 11:54:18 +05:30
parent 1b3b820f92
commit 761c911f5b
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,26 @@
#!/bin/bash
cd /sources
tar xf autoconf-2.71.tar.xz
cd autoconf-2.71
./configure --prefix=/usr
if [ $? -ne 0 ]
then
exit 1
fi
make -j5
if [ $? -ne 0 ]
then
exit 1
fi
make check
make install
cd /sources
rm -rf autoconf-2.71

View file

@ -1067,3 +1067,15 @@ then
stop_script "chapter8/8.43-intltool.sh"
fi
# Chapter 8.44
# ============
echo "Building autoconf"
su -c "bash $SCRIPT/8.44-autoconf.sh"
# Exit on error
check_exit_code
if [ $exit_status -ne 0 ]
then
stop_script "chapter8/8.44-autoconf.sh"
fi