[BUG:650] Fix LICENSE parsing: license.bblcass

LICENSE parsing was missing some cases. Fixed

Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com>
This commit is contained in:
Beth Flanagan
2011-02-25 15:41:09 -08:00
committed by Saul Wold
parent 16b8f96936
commit 3c0522e944

View File

@@ -66,7 +66,8 @@ python do_populate_lic() {
# I'm sure someone has written a logic parser for these fields, but if so, I don't know where it is.
# So what I do is just link to every license mentioned in the license field.
for license_type in license_types.replace('&', '').replace('+', '').replace('&', '').replace('|', '').replace('(', '').replace(')', '').split():
for license_type in (' '.join(license_types.replace('&', ' ').replace('+', ' ').replace('|', ' ')
.replace('(', ' ').replace(')', ' ').replace(';', ' ').replace(',', ' ').split())):
if os.path.isfile(os.path.join(generic_directory, license_type)):
gen_lic_dest = os.path.join(bb.data.getVar('LICENSE_DIRECTORY', d, True), "common-licenses")
try: