lfs-buildscripts/CH8Build/CH08.44-autoconf.sh
2024-10-08 18:50:04 -07:00

41 lines
658 B
Bash

#!/bin/bash
source versions.sh
GLSOURCES="/sources"
pushd ${GLSOURCES} > /dev/null 2>&1 || myfail "Failed to move to ${GLSOURCES}"
[ -d autoconf-${autoconf_version} ] && rm -rf autoconf-${autoconf_version}
tar -Jxf ${autoconf_tarball}
cd autoconf-${autoconf_version}
./configure --prefix=/usr
make
if [ $? -ne 0 ]; then
myfail "Failed building autoconf"
fi
if [ ! -f ${GLSOURCES}/SKIPTESTS ]; then
echo "running autoconf make check"
make check > ${GLSOURCES}/autoconf.check.log 2>&1
fi
make install
if [ $? -ne 0 ]; then
myfail "Failed installing autoconf"
fi
popd
# cleanup
pushd $GLSOURCES
rm -rf autoconf-${autoconf_version}
popd