aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2012-05-23 16:19:23 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-24 08:34:51 +0100
commit9362702aa9dd82fed7e6d6e3cb1289521b802075 (patch)
tree6884ab559c3360d37a932117ec4c634d9d34546d /meta/classes
parent41ee978b62a9c40f36f8ad0acef147e36edffa17 (diff)
downloadopenembedded-core-contrib-9362702aa9dd82fed7e6d6e3cb1289521b802075.tar.gz
sanity.bbclass: add newline to check_create_long_filename failure message
Each failure in the sanity message should be reported on a new line. Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/sanity.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 5cf9ea135b..39da14ba41 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):