From patchwork Thu May 24 04:42:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [Consolidated, Pull, 25/28] sanity.bbclass: add newline to check_create_long_filename failure message Date: Thu, 24 May 2012 04:42:28 -0000 From: Saul Wold X-Patchwork-Id: 28575 Message-Id: To: openembedded-core@lists.openembedded.org From: Joshua Lock Each failure in the sanity message should be reported on a new line. Signed-off-by: Joshua Lock --- 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 5cf9ea13..39da14b 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):