diff options
author | 2015-01-12 14:21:17 +0000 | |
---|---|---|
committer | 2015-01-12 14:21:17 +0000 | |
commit | 33a3e8e95ba9e1e899b582d0a9f46c0a5a53cf2e (patch) | |
tree | d219692df5f4d85c0be77b047ccff03bfc144044 /eclass | |
parent | Version bump (diff) | |
download | historical-33a3e8e95ba9e1e899b582d0a9f46c0a5a53cf2e.tar.gz historical-33a3e8e95ba9e1e899b582d0a9f46c0a5a53cf2e.tar.bz2 historical-33a3e8e95ba9e1e899b582d0a9f46c0a5a53cf2e.zip |
Use "--force" when running eautoconf through eautoreconf (bug #527506)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/autotools.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 29a06620dba6..b2147d1c74d1 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1504 2015/01/11 20:40:24 maksbotan Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1505 2015/01/12 14:21:17 polynomial-c Exp $ + + 12 Jan 2015; Lars Wendler <polynomial-c@gentoo.org> autotools.eclass: + Use "--force" when running eautoconf through eautoreconf (bug #527506). 11 Jan 2015; Maxim Koltsov <maksbotan@gentoo.org> leechcraft.eclass: Add fallback https EGIT_REPO_URI diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 0ef7dc88e13b..fce85dd68872 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.171 2015/01/08 23:26:56 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.172 2015/01/12 14:21:17 polynomial-c Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -222,7 +222,7 @@ eautoreconf() { done ${rerun_aclocal} && eaclocal - eautoconf + eautoconf --force eautoheader [[ ${AT_NOEAUTOMAKE} != "yes" ]] && FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |