summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTobias Klausmann <tobias.johannes.klausmann@mni.thm.de>2017-08-02 03:05:42 +0200
committerEric Engestrom <eric.engestrom@imgtec.com>2017-08-02 14:28:58 +0100
commit44828e99f9b5f04f8e2f19dd671de4d67ee1f595 (patch)
tree0a9d68d7652bb3822016985d8c6d66dab2d9ce97 /bin
parente7499953267028f5d28257e0e932fafc346c2243 (diff)
build: Don't bail on OSError in git_sha1_gen.py
When building sandboxed, we may encounter additional errors. Ignore the errors, as we are in a constrained environment. This can be observed when building latest git with OBS. Signed-off-by: Tobias Klausmann <tobias.johannes.klausmann@mni.thm.de> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/git_sha1_gen.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/git_sha1_gen.py b/bin/git_sha1_gen.py
index 6d13db1e16f..fe30084a4f8 100755
--- a/bin/git_sha1_gen.py
+++ b/bin/git_sha1_gen.py
@@ -16,5 +16,8 @@ try:
except subprocess.CalledProcessError as e:
# don't print anything if git fails
pass
+except OSError as eos:
+ # don't fail on inaccessible files when sandboxed
+ pass
else:
sys.stdout.write('#define MESA_GIT_SHA1 "git-%s"\n' % git_sha1.rstrip())