blob: 898e59075879e00ec42979ce32cd5b14e814f153 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# run git from the sources directory
cd "$(dirname "$0")"
# don't print anything if git fails
if ! git_sha1=$(git --git-dir=../.git rev-parse --short=10 HEAD 2>/dev/null)
then
exit
fi
printf '#define MESA_GIT_SHA1 "git-%s"\n' "$git_sha1"
|