summaryrefslogtreecommitdiffstats
path: root/bin/git_sha1_gen.py
blob: fe30084a4f87dfd7439bb608ed79ff343f47515a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python

import os.path
import subprocess
import sys

git_dir = os.path.join(os.path.dirname(sys.argv[0]), '..', '.git')
try:
    git_sha1 = subprocess.check_output([
        'git',
        '--git-dir=' + git_dir,
        'rev-parse',
        '--short=10',
        'HEAD',
    ], stderr=open(os.devnull, 'w'))
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())