Gentoo Archives: gentoo-dev

From: "Michał Górny" <mgorny@g.o>
To: gentoo-dev@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: [gentoo-dev] [PATCH autotools-utils 3/4] Disallow eautomake from calling eautoreconf unnecessarily.
Date: Fri, 06 Jan 2012 22:07:22
Message-Id: 1325887605-29588-3-git-send-email-mgorny@gentoo.org
In Reply to: [gentoo-dev] [PATCH autotools-utils 1/4] Support installing default docs, similarly to EAPI4. by "Michał Górny"
1 As we're running the complete set of commands for autoreconf, it is
2 completely unnecessary for eautomake to conditionally run that. Thus, we
3 need to set FROM_EAUTORECONF.
4 ---
5 eclass/autotools-utils.eclass | 2 +-
6 1 files changed, 1 insertions(+), 1 deletions(-)
7
8 diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass
9 index 96b3372..87f8b4d 100644
10 --- a/eclass/autotools-utils.eclass
11 +++ b/eclass/autotools-utils.eclass
12 @@ -332,7 +332,7 @@ autotools-utils_autoreconf() {
13
14 eautoconf
15 eautoheader
16 - eautomake
17 + FROM_EAUTORECONF=yep eautomake
18
19 local x
20 for x in $(autotools_get_subdirs); do
21 --
22 1.7.8.2