diff options
author | 2015-01-12 14:21:17 +0000 | |
---|---|---|
committer | 2015-01-12 14:21:17 +0000 | |
commit | 33a3e8e95ba9e1e899b582d0a9f46c0a5a53cf2e (patch) | |
tree | d219692df5f4d85c0be77b047ccff03bfc144044 /eclass/autotools.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/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
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} |