autogen.sh: make config.guess update optional

This commit is contained in:
Frank Denis 2019-05-16 23:38:48 +02:00
parent bb6f156412
commit d437e39034

View File

@ -1,6 +1,6 @@
#! /bin/sh
if glibtoolize --version > /dev/null 2>&1; then
if glibtoolize --version >/dev/null 2>&1; then
LIBTOOLIZE='glibtoolize'
else
LIBTOOLIZE='libtoolize'
@ -26,16 +26,19 @@ command -v automake >/dev/null 2>&1 || {
exit 1
}
if autoreconf --version > /dev/null 2>&1 ; then
if autoreconf --version >/dev/null 2>&1; then
autoreconf -ivf
else
$LIBTOOLIZE && \
aclocal && \
automake --add-missing --force-missing --include-deps && \
autoconf
$LIBTOOLIZE &&
aclocal &&
automake --add-missing --force-missing --include-deps &&
autoconf
fi
command -v curl >/dev/null 2>&1 && {
[ -z "$DO_NOT_UPDATE_CONFIG_SCRIPTS" ] &&
command -v curl >/dev/null 2>&1 && {
echo "Downloading config.guess and config.sub..."
curl -sL -o config.guess \
'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD' &&
mv -f config.guess build-aux/config.guess
@ -43,6 +46,8 @@ command -v curl >/dev/null 2>&1 && {
curl -sL -o config.sub \
'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD' &&
mv -f config.sub build-aux/config.sub
echo "Done."
}
rm -f config.guess config.sub