From: Kevin Tian Date: Tue, 31 Aug 2010 10:15:14 +0000 (+0800) Subject: distro_check: use space as the delimiter for aliases X-Git-Tag: yocto-4.0~44389 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=444e44806530e90300135cc66cf7d160beb1b4be;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git distro_check: use space as the delimiter for aliases Signed-off-by: Kevin Tian --- diff --git a/meta/lib/oe/distro_check.py b/meta/lib/oe/distro_check.py index 189f5ef20d9..58972585a62 100644 --- a/meta/lib/oe/distro_check.py +++ b/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()