Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/mgorny:master commit in: eclass/
Date: Sat, 07 Jan 2012 22:36:58
Message-Id: c2e449b082c81567396525af8c85b2d777ce8053.mgorny@gentoo
1 commit: c2e449b082c81567396525af8c85b2d777ce8053
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 6 21:58:46 2012 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 6 22:06:23 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=c2e449b0
7
8 Disallow eautomake from calling eautoreconf unnecessarily.
9
10 As we're running the complete set of commands for autoreconf, it is
11 completely unnecessary for eautomake to conditionally run that. Thus, we
12 need to set FROM_EAUTORECONF.
13
14 ---
15 eclass/autotools-utils.eclass | 2 +-
16 1 files changed, 1 insertions(+), 1 deletions(-)
17
18 diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass
19 index 96b3372..87f8b4d 100644
20 --- a/eclass/autotools-utils.eclass
21 +++ b/eclass/autotools-utils.eclass
22 @@ -332,7 +332,7 @@ autotools-utils_autoreconf() {
23
24 eautoconf
25 eautoheader
26 - eautomake
27 + FROM_EAUTORECONF=yep eautomake
28
29 local x
30 for x in $(autotools_get_subdirs); do