Browse Source

distro_check: use space as the delimiter for aliases

Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Kevin Tian 13 years ago
parent
commit
444e448065
1 changed files with 1 additions and 1 deletions
  1. 1 1
      meta/lib/oe/distro_check.py

+ 1 - 1
meta/lib/oe/distro_check.py

@@ -253,7 +253,7 @@ def compare_in_distro_packages_list(distro_check_dir, d):
     tmp = bb.data.getVar('DISTRO_PN_ALIAS', d, True)
     distro_pn_aliases = {}
     if tmp:
-        list = tmp.split(';')
+        list = tmp.split(' ')
         for str in list:
             (dist, pn_alias) = str.split('=')
             distro_pn_aliases[dist.strip().lower()] = pn_alias.strip()