From: Joshua Lock Date: Wed, 23 May 2012 23:19:23 +0000 (-0700) Subject: sanity.bbclass: add newline to check_create_long_filename failure message X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=13a86cb33d3b348bf4173527683f2c782d7ad968;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git sanity.bbclass: add newline to check_create_long_filename failure message Each failure in the sanity message should be reported on a new line. (From OE-Core rev: 9362702aa9dd82fed7e6d6e3cb1289521b802075) Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 5cf9ea135bb..39da14ba418 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -150,7 +150,7 @@ def check_create_long_filename(filepath, pathname): if errno == 36: # ENAMETOOLONG return "Failed to create a file with a long name in %s. Please use a filesystem that does not unreasonably limit filename length.\n" % pathname else: - return "Failed to create a file in %s: %s" % (pathname, strerror) + return "Failed to create a file in %s: %s.\n" % (pathname, strerror) return "" def check_connectivity(d):