mirror of
https://git.yoctoproject.org/poky
synced 2026-04-05 08:02:25 +02:00
package.bbclass: Optimise file dependency calculations to ignore locales and kernel modules as these never have dependencies we'd detect anyway
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -611,7 +611,7 @@ python package_do_filedeps() {
|
||||
|
||||
# Determine dependencies
|
||||
for pkg in packages.split():
|
||||
if pkg.endswith('-dbg'):
|
||||
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:
|
||||
continue
|
||||
|
||||
# Process provides
|
||||
|
||||
Reference in New Issue
Block a user