From: Richard Purdie Date: Wed, 18 Jun 2014 16:58:56 +0000 (+0100) Subject: sstatesig: Add try/except around the stat calls X-Git-Tag: 2015-4~2516 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5ed9bb42abf93aa084dd23ca68cc996a94a51a10;p=openembedded-core.git sstatesig: Add try/except around the stat calls Its possible sstate symlinks to other sstate mirrors which then my get removed/cleaned. If we find invalid symlinks, skip over them rather than error with a backtrace. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index acff2a0569..d58147f78f 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py @@ -125,7 +125,10 @@ def find_siginfo(pn, taskname, taskhashlist, d): foundall = True break else: - filedates[fullpath] = os.stat(fullpath).st_mtime + try: + filedates[fullpath] = os.stat(fullpath).st_mtime + except OSError: + continue if not taskhashlist or (len(filedates) < 2 and not foundall): # That didn't work, look in sstate-cache @@ -156,7 +159,10 @@ def find_siginfo(pn, taskname, taskhashlist, d): if taskhashlist: hashfiles[hashval] = fullpath else: - filedates[fullpath] = os.stat(fullpath).st_mtime + try: + filedates[fullpath] = os.stat(fullpath).st_mtime + except: + continue if taskhashlist: return hashfiles