commit:     e544f4bd66580d7cbca8533893e9d7dff26896b0
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 28 17:34:19 2021 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Jun 28 17:34:19 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e544f4bd

meson.eclass: prefix MESON_DEPEND with an underscore

Avoids a pkgcheck warning about undocumented variables.

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 eclass/meson.eclass | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/eclass/meson.eclass b/eclass/meson.eclass
index a0b3906078c..2a563e367c6 100644
--- a/eclass/meson.eclass
+++ b/eclass/meson.eclass
@@ -47,15 +47,15 @@ inherit multiprocessing ninja-utils python-utils-r1 
toolchain-funcs
 
 EXPORT_FUNCTIONS src_configure src_compile src_test src_install
 
-MESON_DEPEND=">=dev-util/meson-0.56.0
+_MESON_DEPEND=">=dev-util/meson-0.56.0
        >=dev-util/ninja-1.8.2
        dev-util/meson-format-array
 "
 
 if [[ ${EAPI} == 6 ]]; then
-       DEPEND=${MESON_DEPEND}
+       DEPEND=${_MESON_DEPEND}
 else
-       BDEPEND=${MESON_DEPEND}
+       BDEPEND=${_MESON_DEPEND}
 fi
 
 # @ECLASS-VARIABLE: BUILD_DIR

Reply via email to