From 8660cb985c58cad276592bba71770a1ac62c2088 Mon Sep 17 00:00:00 2001 From: Zoltan Varga Date: Fri, 26 Oct 2012 02:52:05 +0200 Subject: [PATCH] Quiet some automake warnings. --- autogen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 5d578c0605d..479425a5dc0 100755 --- a/autogen.sh +++ b/autogen.sh @@ -103,7 +103,7 @@ if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then fi echo "Running aclocal -I m4 -I . $ACLOCAL_FLAGS ..." -aclocal -I m4 -I . $ACLOCAL_FLAGS || { +aclocal -W none -I m4 -I . $ACLOCAL_FLAGS || { echo echo "**Error**: aclocal failed. This may mean that you have not" echo "installed all of the packages you need, or you may need to" @@ -119,7 +119,7 @@ if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then fi echo "Running automake --gnu $am_opt ..." -automake --add-missing --gnu -Wno-portability $am_opt || +automake --add-missing --gnu -Wno-portability -Wno-obsolete $am_opt || { echo "**Error**: automake failed."; exit 1; } echo "Running autoconf ..." autoconf || { echo "**Error**: autoconf failed."; exit 1; } -- 2.25.1