Nothing in OE-Core uses this and its been deprecated for some time. Remove the last reference to it.
Signed-off-by: Richard Purdie <[email protected]> --- meta/classes/utils.bbclass | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index cd3d05709ed..c32b868aa88 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass @@ -1,12 +1,10 @@ def machine_paths(d): """List any existing machine specific filespath directories""" machine = d.getVar("MACHINE") - filespathpkg = d.getVar("FILESPATHPKG").split(":") for basepath in d.getVar("FILESPATHBASE").split(":"): - for pkgpath in filespathpkg: - machinepath = os.path.join(basepath, pkgpath, machine) - if os.path.isdir(machinepath): - yield machinepath + machinepath = os.path.join(basepath, machine) + if os.path.isdir(machinepath): + yield machinepath def is_machine_specific(d): """Determine whether the current recipe is machine specific""" -- 2.25.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#137830): https://lists.openembedded.org/g/openembedded-core/message/137830 Mute This Topic: https://lists.openembedded.org/mt/73978043/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/leave/8023207/1426099254/xyzzy [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
