diff options
author | Ulrich Müller <ulm@gentoo.org> | 2014-07-11 08:21:58 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2014-07-11 08:21:58 +0000 |
commit | 8f1f7c79ab9bb05a644c509be621e0d1b412ed8e (patch) | |
tree | 9d9cb7aae5ea87183add280d85797183b6f57d70 /eclass/pam.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/pam.eclass')
-rw-r--r-- | eclass/pam.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/pam.eclass b/eclass/pam.eclass index 97f418ce747c..f55a93873fc7 100644 --- a/eclass/pam.eclass +++ b/eclass/pam.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/eclass/pam.eclass,v 1.23 2012/08/05 15:34:20 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/pam.eclass,v 1.24 2014/07/11 08:21:58 ulm Exp $ # # @ECLASS: pam.eclass @@ -13,8 +13,8 @@ # This eclass contains functions to install pamd configuration files and # pam modules. -if [[ ${___ECLASS_ONCE_PAM} != "recur -_+^+_- spank" ]] ; then -___ECLASS_ONCE_PAM="recur -_+^+_- spank" +if [[ -z ${_PAM_ECLASS} ]]; then +_PAM_ECLASS=1 inherit flag-o-matic multilib |