diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-06 09:24:40 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-06 09:25:25 +0100 |
commit | 492205ea83d4a4ae8baf9fabdf73440ba66123ab (patch) | |
tree | 270c1becf22e53a8d0376bce6b5a82efa6333105 /meta/classes/packagedata.bbclass | |
parent | ae55dea68d2e0bde2a1ed02e78dc55c2f420cf37 (diff) | |
download | poky-492205ea83d4a4ae8baf9fabdf73440ba66123ab.tar.gz |
packagedata: Fix after override syntax change
Fix a reference that should have been part of the override syntax change
causing packages to be written out incorrectly.
(From OE-Core rev: 0f978b4f03e71267ad0a8a5054141e7727f2944f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/packagedata.bbclass')
-rw-r--r-- | meta/classes/packagedata.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/packagedata.bbclass b/meta/classes/packagedata.bbclass index 3b962f29b5..c2760e2bf0 100644 --- a/meta/classes/packagedata.bbclass +++ b/meta/classes/packagedata.bbclass | |||
@@ -27,7 +27,7 @@ python read_subpackage_metadata () { | |||
27 | # of that variable, e.g. DESCRIPTION could clobber DESCRIPTION:<pkgname> | 27 | # of that variable, e.g. DESCRIPTION could clobber DESCRIPTION:<pkgname> |
28 | # We therefore don't clobber for the unsuffixed variable versions | 28 | # We therefore don't clobber for the unsuffixed variable versions |
29 | # | 29 | # |
30 | if key.endswith("_" + pkg): | 30 | if key.endswith(":" + pkg): |
31 | d.setVar(key, sdata[key]) | 31 | d.setVar(key, sdata[key]) |
32 | else: | 32 | else: |
33 | d.setVar(key, sdata[key], parsing=True) | 33 | d.setVar(key, sdata[key], parsing=True) |