diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-09-08 15:04:47 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-09-08 15:04:47 +0000 |
commit | 5a379515aa2a917eb26cc71892d2a8e68f8b4954 (patch) | |
tree | 168d532141878e3d4345764317ba8fd68247b0bd /eclass/autotools.eclass | |
parent | 4.0 series bump to 4.0.26, gradually removing the needs of $FILESDIR; minor c... (diff) | |
download | historical-5a379515aa2a917eb26cc71892d2a8e68f8b4954.tar.gz historical-5a379515aa2a917eb26cc71892d2a8e68f8b4954.tar.bz2 historical-5a379515aa2a917eb26cc71892d2a8e68f8b4954.zip |
Always return a truth value on eautoreconf, as it dies itself when needed.
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index da93b1b3a82d..236a650fac95 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.20 2005/09/04 15:15:37 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.21 2005/09/08 15:04:47 flameeyes Exp $ # # Author: Diego Pettenò <flameeyes@gentoo.org> # Enhancements: Martin Schlemmer <azarah@gentoo.org> @@ -68,6 +68,8 @@ eautoreconf() { # Normally run by econf() [[ ${AT_GNUCONF_UPDATE} == "yes" ]] && gnuconfig_update + + return 0 } # These functions runs the autotools using autotools_run_tool with the |