diff options
author | Sam James <sam@gentoo.org> | 2023-05-26 05:46:27 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-26 05:46:27 +0100 |
commit | 47f7239e01ad9ab99ba28da8fb52f787ddf0648f (patch) | |
tree | 9a3505c63b924afad03266c5612d76ae1ad964e7 /eclass | |
parent | java-pkg-simple.eclass: drop invalid local in global scope (diff) | |
download | gentoo-47f7239e01ad9ab99ba28da8fb52f787ddf0648f.tar.gz gentoo-47f7239e01ad9ab99ba28da8fb52f787ddf0648f.tar.bz2 gentoo-47f7239e01ad9ab99ba28da8fb52f787ddf0648f.zip |
gstreamer-meson.eclass: drop invalid local in global scope
Thanks to radhermit for reporting. Portage doesn't notice this because
it does sourcing in function-scope.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gstreamer-meson.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/gstreamer-meson.eclass b/eclass/gstreamer-meson.eclass index a4fb4b1a2028..b4bec2042a2f 100644 --- a/eclass/gstreamer-meson.eclass +++ b/eclass/gstreamer-meson.eclass @@ -209,7 +209,7 @@ if [[ "${PN}" != "${GST_ORG_MODULE}" ]]; then # Export multilib phases used for split builds. multilib_src_install_all() { gstreamer_multilib_src_install_all; } else - local extra_deps="" + extra_deps="" IUSE="nls test" RESTRICT="!test? ( test )" |