diff options
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r-- | meta/classes/sanity.bbclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index ac2314fdcf..766e97e916 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -235,12 +235,14 @@ def check_create_long_filename(filepath, pathname): | |||
235 | f = file(testfile, "w") | 235 | f = file(testfile, "w") |
236 | f.close() | 236 | f.close() |
237 | os.remove(testfile) | 237 | os.remove(testfile) |
238 | except IOError as (errno, strerror): | 238 | except IOError as e: |
239 | errno, strerror = e.args | ||
239 | if errno == 36: # ENAMETOOLONG | 240 | if errno == 36: # ENAMETOOLONG |
240 | 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 | 241 | 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 |
241 | else: | 242 | else: |
242 | return "Failed to create a file in %s: %s.\n" % (pathname, strerror) | 243 | return "Failed to create a file in %s: %s.\n" % (pathname, strerror) |
243 | except OSError as (errno, strerror): | 244 | except OSError as e: |
245 | errno, strerror = e.args | ||
244 | return "Failed to create %s directory in which to run long name sanity check: %s.\n" % (pathname, strerror) | 246 | return "Failed to create %s directory in which to run long name sanity check: %s.\n" % (pathname, strerror) |
245 | return "" | 247 | return "" |
246 | 248 | ||