commit: 41bb2b5f162ea14bf330bb8eae2f0a15a0a2c647 Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net> AuthorDate: Tue Dec 21 10:02:47 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Dec 24 04:49:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41bb2b5f
vdr-plugin-2.eclass: fix variable VDRPLUGIN Variable VDRPLUGIN: remove declaration @INTERNAL, instead declare as @OUTPUT_VARIABLE as it is used in many packages This fixes errors thrown by pkgcheck Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net> Closes: https://github.com/gentoo/gentoo/pull/23454 Signed-off-by: Sam James <sam <AT> gentoo.org> eclass/vdr-plugin-2.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/vdr-plugin-2.eclass b/eclass/vdr-plugin-2.eclass index c2f31003fd87..68f960c28caa 100644 --- a/eclass/vdr-plugin-2.eclass +++ b/eclass/vdr-plugin-2.eclass @@ -15,10 +15,10 @@ # Eclass for easing maintenance of vdr plugin ebuilds # @ECLASS-VARIABLE: VDRPLUGIN -# @INTERNAL +# @OUTPUT_VARIABLE # @DESCRIPTION: # The name of the vdr plugin, plain name without "vdr-" or "plugin" prefix or suffix. -# This variable is derived from ${PN} +# This variable is derived from ${PN} and is read-only for the ebuild. # @ECLASS-VARIABLE: VDR_CONFD_FILE # @DEFAULT_UNSET
