diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-04-09 12:59:22 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-04-09 12:59:22 +0000 |
commit | bca6b953f0383ab0d58b64b6d2078e75779ffa13 (patch) | |
tree | 9c6afcc749e01ec18d3a581ea38dd177359f4ad8 /eclass/autotools.eclass | |
parent | Remarking 0.68 ~amd64, bug 119099 (diff) | |
download | historical-bca6b953f0383ab0d58b64b6d2078e75779ffa13.tar.gz historical-bca6b953f0383ab0d58b64b6d2078e75779ffa13.tar.bz2 historical-bca6b953f0383ab0d58b64b6d2078e75779ffa13.zip |
Don't run automake two times when the versions differs.
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index a9d90ed0ebed..cc39b71ee2bb 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.35 2006/04/07 16:49:32 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.36 2006/04/09 12:59:22 flameeyes Exp $ # # Author: Diego Pettenò <flameeyes@gentoo.org> # Enhancements: Martin Schlemmer <azarah@gentoo.org> @@ -160,6 +160,7 @@ eautomake() { einfo "Automake used for the package (${used_automake}) differs from" einfo "the installed version (${installed_automake})." eautoreconf + return 0 fi fi |