autogen.sh
404 Bytes
#! /bin/sh
if autoreconf --install --symlink --force; then
echo
echo "------------------------------------------------------"
echo "Initialized build system. You can now run ./configure "
echo "------------------------------------------------------"
echo
else
s="$?"
echo
echo "--------------------------"
echo "Running autoreconf failed."
echo "--------------------------"
echo
exit "$s"
fi