From: Peter Kjellerstedt Date: Fri, 27 Sep 2019 10:33:52 +0000 (+0200) Subject: lib/oe/lsb: Make sure the distro ID is always lowercased X-Git-Tag: uninative-2.7~35 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=4ba7ef79d23a4cf688d7a794064893fe5f2f473b;p=openembedded-core.git lib/oe/lsb: Make sure the distro ID is always lowercased In commit 8689e561 (lib/oe/lsb: attempt to ensure consistent distro id regardless of source), the distro ID returned by oe.lsb.distro_identifier() was lowercased, but only if a release version is also present. This changes the code to always lowercase the distro ID, including the default distro ID "unknown", which is used if no other ID can be identified. Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oe/lsb.py b/meta/lib/oe/lsb.py index 4f2b419edc..43e46380d7 100644 --- a/meta/lib/oe/lsb.py +++ b/meta/lib/oe/lsb.py @@ -110,12 +110,12 @@ def distro_identifier(adjust_hook=None): if adjust_hook: distro_id, release = adjust_hook(distro_id, release) if not distro_id: - return "Unknown" - # Filter out any non-alphanumerics - distro_id = re.sub(r'\W', '', distro_id) + return "unknown" + # Filter out any non-alphanumerics and convert to lowercase + distro_id = re.sub(r'\W', '', distro_id).lower() if release: - id_str = '{0}-{1}'.format(distro_id.lower(), release) + id_str = '{0}-{1}'.format(distro_id, release) else: id_str = distro_id return id_str.replace(' ','-').replace('/','-')