mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
package.bbclass: Unbreak per file dependencies and blacklist doc packages
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -642,7 +642,7 @@ python package_do_filedeps() {
|
|||||||
|
|
||||||
# Determine dependencies
|
# Determine dependencies
|
||||||
for pkg in packages.split():
|
for pkg in packages.split():
|
||||||
if pkg.endswith('-dbg') or pkg.find('-locale-') != -1 or pkg.find('-localedata-') != -1 or pkg.find('-gconv-') != -1 or pkg.find('-charmap-') != -1 or pkg.startswith('kernel-module-') != -1:
|
if pkg.endswith('-dbg') or pkg.endswith('-doc') or pkg.find('-locale-') != -1 or pkg.find('-localedata-') != -1 or pkg.find('-gconv-') != -1 or pkg.find('-charmap-') != -1 or pkg.startswith('kernel-module-'):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Process provides
|
# Process provides
|
||||||
|
|||||||
Reference in New Issue
Block a user