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 | fd09acbe8caeba968c7440f90995b39da742143d (patch) | |
tree | 4ff02ad41c2fa38676fe63ef48f118aa7c90e450 /eclass/cdrom.eclass | |
parent | droped vdr use-flag, droped media-video/vdr from depend, droped useless servi... (diff) | |
download | gentoo-2-fd09acbe8caeba968c7440f90995b39da742143d.tar.gz gentoo-2-fd09acbe8caeba968c7440f90995b39da742143d.tar.bz2 gentoo-2-fd09acbe8caeba968c7440f90995b39da742143d.zip |
Avoid reserved names for functions and variables, bug 516092.
Diffstat (limited to 'eclass/cdrom.eclass')
-rw-r--r-- | eclass/cdrom.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index ffbbf02ed26d..34d7893625ae 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.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 -# $Header: /var/cvsroot/gentoo-x86/eclass/cdrom.eclass,v 1.5 2012/01/18 12:42:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cdrom.eclass,v 1.6 2014/07/11 08:21:58 ulm Exp $ # @ECLASS: cdrom.eclass # @MAINTAINER: @@ -15,8 +15,8 @@ # and when the function returns, you can assume that the cd has been # found at CDROM_ROOT. -if [[ -z ${___ECLASS_ONCE_CDROM} ]]; then -___ECLASS_ONCE_CDROM=1 +if [[ -z ${_CDROM_ECLASS} ]]; then +_CDROM_ECLASS=1 inherit portability |