[oe-commits] Paul Eggleton : classes/sanity: trim trailing newline when reading /etc/ redhat-release

git at git.openembedded.org git at git.openembedded.org
Wed Apr 18 11:03:32 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: bea0311a6478febe8ab4884fb1c479f610856534
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=bea0311a6478febe8ab4884fb1c479f610856534

Author: Paul Eggleton <paul.eggleton at linux.intel.com>
Date:   Wed Apr 18 10:56:09 2012 +0100

classes/sanity: trim trailing newline when reading /etc/redhat-release

Any trailing whitespace needs to be stripped before comparing it to the
SANITY_TESTED_DISTROS list.

Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 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 4d4abd3..3ec449c 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"):





More information about the Openembedded-commits mailing list