diff options
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r-- | meta/classes/sanity.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 4d4abd3ea..3ec449c74 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -120,7 +120,7 @@ def check_supported_distro(e): if os.path.exists("/etc/redhat-release"): f = open("/etc/redhat-release", "r") try: - distro = f.readline() + distro = f.readline().strip() finally: f.close() elif os.path.exists("/etc/SuSE-release"): |