The purpose of this translation API is to make sure that the file name can be used in a bitbake variable without adding special meaning, therefore the ":" should also be replaced since it is the override separator
Signed-off-by: Joshua Watt <[email protected]> --- meta/lib/oe/package.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/lib/oe/package.py b/meta/lib/oe/package.py index 0fe49c00d6d..d1303f32bfd 100644 --- a/meta/lib/oe/package.py +++ b/meta/lib/oe/package.py @@ -202,6 +202,7 @@ TRANSLATE = ( ("[", "@openbrace@"), ("]", "@closebrace@"), ("_", "@underscore@"), + (":", "@colon@"), ) def file_translate(file): -- 2.43.2
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#199818): https://lists.openembedded.org/g/openembedded-core/message/199818 Mute This Topic: https://lists.openembedded.org/mt/106267981/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
