lfs-scripts/scripts/chapter8/8.44-autoconf.sh
2023-01-12 11:54:18 +05:30

26 lines
235 B
Bash

#!/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