diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/sanity.bbclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 6807a23152..b26ea6b372 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -183,8 +183,9 @@ def check_create_long_filename(filepath, pathname): | |||
183 | f.close() | 183 | f.close() |
184 | os.remove(testfile) | 184 | os.remove(testfile) |
185 | except IOError as e: | 185 | except IOError as e: |
186 | errno, strerror = e.args | 186 | import errno |
187 | if errno == 36: # ENAMETOOLONG | 187 | err, strerror = e.args |
188 | if err == errno.ENAMETOOLONG: | ||
188 | 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 | 189 | 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 |
189 | else: | 190 | else: |
190 | return "Failed to create a file in %s: %s.\n" % (pathname, strerror) | 191 | return "Failed to create a file in %s: %s.\n" % (pathname, strerror) |