From b1e75e9c5a088639bc2a0293cd761c47b1cc2636 Mon Sep 17 00:00:00 2001 From: Charles Wilson Date: Sun, 6 Sep 2009 20:17:35 -0400 Subject: [PATCH] Ensure autogen.sh invokes autotools in same order, and with same arguments, as autoreconf. SVN-Revision: 1439 --- build/autogen.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/build/autogen.sh b/build/autogen.sh index 1266b3e2c..03cd65737 100755 --- a/build/autogen.sh +++ b/build/autogen.sh @@ -12,11 +12,14 @@ if [ \! -f build/version ]; then fi set -xe -aclocal -autoheader -autoconf +aclocal -I build/autoconf + +# Note: --automake flag needed only for libtoolize from +# libtool 1.5.x; in libtool 2.2.x it is a synonym for --quiet case `uname` in Darwin) glibtoolize --automake -c;; *) libtoolize --automake -c;; esac +autoconf +autoheader automake -a -c -- 2.47.3