Advertisement
Guest User

Untitled

a guest
Aug 31st, 2017
480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. From 1e0195884777696dfe0acd9a943402697fb35243 Mon Sep 17 00:00:00 2001
  2. From: Jussi Kukkonen <jussi.kukkonen@intel.com>
  3. Date: Thu, 31 Aug 2017 16:00:02 +0300
  4. Subject: [PATCH] Untested potential fix for opencv packaging
  5.  
  6. Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
  7. ---
  8. meta-oe/recipes-support/opencv/opencv_3.1.bb | 2 +-
  9. 1 file changed, 1 insertion(+), 1 deletion(-)
  10.  
  11. diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/opencv/opencv_3.1.bb
  12. index 1bbb965..3e01664 100644
  13. --- a/meta-oe/recipes-support/opencv/opencv_3.1.bb
  14. +++ b/meta-oe/recipes-support/opencv/opencv_3.1.bb
  15. @@ -106,7 +106,7 @@ python populate_packages_prepend () {
  16. blacklist = [ metapkg ]
  17. metapkg_rdepends = [ ]
  18. for pkg in packages[1:]:
  19. - 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'):
  20. + 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'):
  21. metapkg_rdepends.append(pkg)
  22. bb.data.setVar('RDEPENDS_' + metapkg, ' '.join(metapkg_rdepends), d)
  23.  
  24. --
  25. 2.1.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement