diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-01-02 00:28:02 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-01-02 00:29:09 +0000 |
commit | acef849931c5ab14ede40c2ea01a22027e34a335 (patch) | |
tree | 349b43b66c3edd046592587d2126f4d1910d84c6 /bitbake | |
parent | cd5aab07cd97e694d6d3dd3441ffe1144b963564 (diff) | |
download | poky-acef849931c5ab14ede40c2ea01a22027e34a335.tar.gz |
bitbake: 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.
(Bitbake rev: 36589f13c5babb3b2af82666c8a96338e6ea4eb9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/cookerdata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py index 8198f509e2..c6b5658d75 100644 --- a/bitbake/lib/bb/cookerdata.py +++ b/bitbake/lib/bb/cookerdata.py | |||
@@ -425,7 +425,7 @@ class CookerDataBuilder(object): | |||
425 | data.delVar('LAYERDIR_RE') | 425 | data.delVar('LAYERDIR_RE') |
426 | data.delVar('LAYERDIR') | 426 | data.delVar('LAYERDIR') |
427 | for c in compat_entries: | 427 | for c in compat_entries: |
428 | data.setVar("LAYERSERIES_COMPAT_%s" % c, sorted(compat_entries[c])) | 428 | data.setVar("LAYERSERIES_COMPAT_%s" % c, " ".join(sorted(compat_entries[c]))) |
429 | 429 | ||
430 | bbfiles_dynamic = (data.getVar('BBFILES_DYNAMIC') or "").split() | 430 | bbfiles_dynamic = (data.getVar('BBFILES_DYNAMIC') or "").split() |
431 | collections = (data.getVar('BBFILE_COLLECTIONS') or "").split() | 431 | collections = (data.getVar('BBFILE_COLLECTIONS') or "").split() |