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 | dc68e5772378d56ab748a14572d5729e1dc8a14d (patch) | |
tree | 8d7e766d41dfb89feb1fd4f3d9811a922d001bbe /eclass/autotools.eclass | |
parent | 4.0 series bump to 4.0.26, gradually removing the needs of $FILESDIR; minor c... (diff) | |
download | gentoo-2-dc68e5772378d56ab748a14572d5729e1dc8a14d.tar.gz gentoo-2-dc68e5772378d56ab748a14572d5729e1dc8a14d.tar.bz2 gentoo-2-dc68e5772378d56ab748a14572d5729e1dc8a14d.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 |