summaryrefslogtreecommitdiffstats
path: root/meta/classes/license.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/license.bbclass')
-rw-r--r--meta/classes/license.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass
index a66933f733..ec9aa8f4ef 100644
--- a/meta/classes/license.bbclass
+++ b/meta/classes/license.bbclass
@@ -97,9 +97,9 @@ python do_populate_lic() {
97 97
98 pn = d.getVar('PN', True) 98 pn = d.getVar('PN', True)
99 for package in d.getVar('PACKAGES', True): 99 for package in d.getVar('PACKAGES', True):
100 if d.getVar('LICENSE_' + pn + '-' + package, True): 100 if d.getVar('LICENSE_' + package, True):
101 license_types = license_types + ' & ' + \ 101 license_types = license_types + ' & ' + \
102 d.getVar('LICENSE_' + pn + '-' + package, True) 102 d.getVar('LICENSE_' + package, True)
103 103
104 #If we get here with no license types, then that means we have a recipe 104 #If we get here with no license types, then that means we have a recipe
105 #level license. If so, we grab only those. 105 #level license. If so, we grab only those.