summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer
diff options
context:
space:
mode:
authorJose Quaresma <quaresma.jose@gmail.com>2022-03-07 00:11:15 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-07 22:44:55 +0000
commitec9fb2e37a4a687c0f18686eba5f3fa6a969bdb9 (patch)
tree246ebce88fba31fac18d4dcf1bb8b0d68a73e911 /meta/recipes-multimedia/gstreamer
parent243394eba18f8e983ea09d0c3e3fe1c96dc81cd6 (diff)
downloadpoky-ec9fb2e37a4a687c0f18686eba5f3fa6a969bdb9.tar.gz
gstreamer1.0-plugins-packaging: rename variables
(From OE-Core rev: f95d1ea7f481a3029267ad3536dbe45ae28c6ed7) Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-packaging.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-packaging.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-packaging.inc
index e906053ac0..afc7be40c8 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-packaging.inc
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-packaging.inc
@@ -38,11 +38,11 @@ python set_gstreamer10_metapkg_rdepends () {
38 metapkg = pn + '-meta' 38 metapkg = pn + '-meta'
39 d.setVar('ALLOW_EMPTY:' + metapkg, "1") 39 d.setVar('ALLOW_EMPTY:' + metapkg, "1")
40 d.setVar('FILES:' + metapkg, "") 40 d.setVar('FILES:' + metapkg, "")
41 blacklist = [ pn, pn + '-meta' ] 41 exclude = [ pn, pn + '-meta' ]
42 metapkg_rdepends = [] 42 metapkg_rdepends = []
43 pkgdest = d.getVar('PKGDEST') 43 pkgdest = d.getVar('PKGDEST')
44 for pkg in oe.utils.packages_filter_out_system(d): 44 for pkg in oe.utils.packages_filter_out_system(d):
45 if pkg not in blacklist and pkg not in metapkg_rdepends: 45 if pkg not in exclude and pkg not in metapkg_rdepends:
46 # See if the package is empty by looking at the contents of its PKGDEST subdirectory. 46 # See if the package is empty by looking at the contents of its PKGDEST subdirectory.
47 # If this subdirectory is empty, then the package is. 47 # If this subdirectory is empty, then the package is.
48 # Empty packages do not get added to the meta package's RDEPENDS 48 # Empty packages do not get added to the meta package's RDEPENDS