aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/cookerdata.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-02 00:28:02 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-02 00:28:04 +0000
commit36589f13c5babb3b2af82666c8a96338e6ea4eb9 (patch)
tree9f5e531fc0046f5cb5b14bf77fb8d6f8008c1d79 /lib/bb/cookerdata.py
parent8c405c97430ac830837e25438e8795f6f7abbdaa (diff)
downloadbitbake-36589f13c5babb3b2af82666c8a96338e6ea4eb9.tar.gz
cookerdata: Fix previous commit to use a string, not a generator
The previous commit was injecting a generator object instead of a string, which happened to fix the issue but we should fix it properly! Thanks to Christopher Larson for spotting. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cookerdata.py')
-rw-r--r--lib/bb/cookerdata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py
index 8198f509e..c6b5658d7 100644
--- a/lib/bb/cookerdata.py
+++ b/lib/bb/cookerdata.py
@@ -425,7 +425,7 @@ class CookerDataBuilder(object):
data.delVar('LAYERDIR_RE')
data.delVar('LAYERDIR')
for c in compat_entries:
- data.setVar("LAYERSERIES_COMPAT_%s" % c, sorted(compat_entries[c]))
+ data.setVar("LAYERSERIES_COMPAT_%s" % c, " ".join(sorted(compat_entries[c])))
bbfiles_dynamic = (data.getVar('BBFILES_DYNAMIC') or "").split()
collections = (data.getVar('BBFILE_COLLECTIONS') or "").split()