From: Joshua Watt Date: Thu, 23 May 2024 18:26:55 +0000 (-0600) Subject: lib: package: Replace ":" in file names X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b87eb329f20e40c1658460af7ff649aa099f0f36;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- 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):