diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-05-22 14:29:06 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-05-22 14:29:06 +0000 |
commit | 6d639f302661c557240078e809c4b615803541bb (patch) | |
tree | da741813f52617b06cb1d2c6b568333338adf342 /eclass/autotools-utils.eclass | |
parent | Change order of USE="postproc" to || ( media-video/ffmpeg media-libs/libpostp... (diff) | |
download | gentoo-2-6d639f302661c557240078e809c4b615803541bb.tar.gz gentoo-2-6d639f302661c557240078e809c4b615803541bb.tar.bz2 gentoo-2-6d639f302661c557240078e809c4b615803541bb.zip |
Call eaclocal unconditionally; _elibtoolize no longer does that.
Diffstat (limited to 'eclass/autotools-utils.eclass')
-rw-r--r-- | eclass/autotools-utils.eclass | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass index 6a9c36a8a46c..490c08465e54 100644 --- a/eclass/autotools-utils.eclass +++ b/eclass/autotools-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.49 2012/05/21 17:34:53 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.50 2012/05/22 14:29:06 mgorny Exp $ # @ECLASS: autotools-utils.eclass # @MAINTAINER: @@ -327,15 +327,12 @@ autotools-utils_autoreconf() { autotools_run_tool gnome-doc-prepare --copy --force fi - # We need to perform the check twice to know whether to run eaclocal. - # (_elibtoolize does that itself) if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] then _elibtoolize --copy --force --install - else - eaclocal fi + eaclocal eautoconf eautoheader FROM_EAUTORECONF=sure eautomake |