diff options
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) |