From: Charles Wilson Date: Mon, 7 Sep 2009 00:17:35 +0000 (-0400) Subject: Ensure autogen.sh invokes autotools in same order, X-Git-Tag: v2.8.0~369 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1e75e9c5a088639bc2a0293cd761c47b1cc2636;p=thirdparty%2Flibarchive.git Ensure autogen.sh invokes autotools in same order, and with same arguments, as autoreconf. SVN-Revision: 1439 --- 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