mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 03:32:13 +02:00
lib/oe/util.py: Add MLPREFIX support to prune_suffix()
prune_suffix() also needs be aware of MLPREFIX when changing PN for use in BPN. (From OE-Core rev: 20dd241052afa5ff80b91ebf09b0b48765bc3412) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -58,7 +58,12 @@ def prune_suffix(var, suffixes, d):
|
||||
# remove it if found
|
||||
for suffix in suffixes:
|
||||
if var.endswith(suffix):
|
||||
return var.replace(suffix, "")
|
||||
var = var.replace(suffix, "")
|
||||
|
||||
prefix = d.getVar("MLPREFIX", True)
|
||||
if prefix and var.startswith(prefix):
|
||||
var = var.replace(prefix, "")
|
||||
|
||||
return var
|
||||
|
||||
def str_filter(f, str, d):
|
||||
|
||||
Reference in New Issue
Block a user