diff options
author | Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> | 2016-12-14 00:46:12 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-12-26 08:23:19 +0100 |
commit | 83248edc6f4845f04986f6ef83299e44a59b1e0f (patch) | |
tree | 19a5d2ecb7a148c3cd74c71ac3e19851a7e03cff | |
parent | 68a23a497cad73a18b091b291ca4ccb0515aa0d7 (diff) | |
download | meta-openembedded-83248edc6f4845f04986f6ef83299e44a59b1e0f.tar.gz |
opencv: Metapkg should not rdepend on -staticdev
Otherwise the running dependencies will grow considerably.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/opencv/opencv_3.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/opencv/opencv_3.1.bb index fa2fdb6e6..cf41d894c 100644 --- a/meta-oe/recipes-support/opencv/opencv_3.1.bb +++ b/meta-oe/recipes-support/opencv/opencv_3.1.bb | |||
@@ -104,7 +104,7 @@ python populate_packages_prepend () { | |||
104 | blacklist = [ metapkg ] | 104 | blacklist = [ metapkg ] |
105 | metapkg_rdepends = [ ] | 105 | metapkg_rdepends = [ ] |
106 | for pkg in packages[1:]: | 106 | for pkg in packages[1:]: |
107 | if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.endswith('-dbg') and not pkg.endswith('-doc') and not pkg.endswith('-locale'): | 107 | if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.endswith('-dbg') and not pkg.endswith('-doc') and not pkg.endswith('-locale') and not pkg.endswith('-staticdev'): |
108 | metapkg_rdepends.append(pkg) | 108 | metapkg_rdepends.append(pkg) |
109 | d.setVar('RDEPENDS_' + metapkg, ' '.join(metapkg_rdepends)) | 109 | d.setVar('RDEPENDS_' + metapkg, ' '.join(metapkg_rdepends)) |
110 | 110 | ||