From b87eb329f20e40c1658460af7ff649aa099f0f36 Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Thu, 23 May 2024 12:26:55 -0600 Subject: [PATCH] lib: package: Replace ":" in file names 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 Signed-off-by: Alexandre Belloni --- 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.47.2