diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-12-13 21:28:15 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-12-13 21:28:15 +0000 |
commit | 77676c3da854337104d5237e3110f832660d2f0a (patch) | |
tree | 0787567033dbdae4fc400a87e9238a067fb2ea5d /eclass/autotools.eclass | |
parent | Remove old. (diff) | |
download | historical-77676c3da854337104d5237e3110f832660d2f0a.tar.gz historical-77676c3da854337104d5237e3110f832660d2f0a.tar.bz2 historical-77676c3da854337104d5237e3110f832660d2f0a.zip |
avoid multiple inclusions when possible to speed caching up
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 5ee2a3e976e8..b8b878c7e695 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.110 2011/11/14 17:08:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.111 2011/12/13 21:27:38 vapier Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -10,6 +10,9 @@ # This eclass is for safely handling autotooled software packages that need to # regenerate their build scripts. All functions will abort in case of errors. +if [[ ${___ECLASS_ONCE_AUTOTOOLS} != "recur -_+^+_- spank" ]] ; then +___ECLASS_ONCE_AUTOTOOLS="recur -_+^+_- spank" + inherit eutils libtool # @ECLASS-VARIABLE: WANT_AUTOCONF @@ -399,3 +402,5 @@ autotools_m4dir_include() { echo $include_opts } + +fi |