diff options
author | 2014-07-11 08:21:58 +0000 | |
---|---|---|
committer | 2014-07-11 08:21:58 +0000 | |
commit | 8f1f7c79ab9bb05a644c509be621e0d1b412ed8e (patch) | |
tree | 9d9cb7aae5ea87183add280d85797183b6f57d70 /eclass/autotools.eclass | |
parent | droped vdr use-flag, droped media-video/vdr from depend, droped useless servi... (diff) | |
download | historical-8f1f7c79ab9bb05a644c509be621e0d1b412ed8e.tar.gz historical-8f1f7c79ab9bb05a644c509be621e0d1b412ed8e.tar.bz2 historical-8f1f7c79ab9bb05a644c509be621e0d1b412ed8e.zip |
Avoid reserved names for functions and variables, bug 516092.
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index c1c77be8623c..616fdd0b7afe 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.161 2014/03/01 11:51:08 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.162 2014/07/11 08:21:58 ulm Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -13,8 +13,8 @@ # Note: We require GNU m4, as does autoconf. So feel free to use any features # from the GNU version of m4 without worrying about other variants (i.e. BSD). -if [[ ${___ECLASS_ONCE_AUTOTOOLS} != "recur -_+^+_- spank" ]] ; then -___ECLASS_ONCE_AUTOTOOLS="recur -_+^+_- spank" +if [[ -z ${_AUTOTOOLS_ECLASS} ]]; then +_AUTOTOOLS_ECLASS=1 inherit libtool multiprocessing |