diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2011-03-31 11:42:01 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2011-04-05 11:21:01 -0700 |
commit | de579a16298e29358fec08bd7cfe3e505674705a (patch) | |
tree | c6876be5e7eda7e592f0be3b3e38dd30e82fca80 /bin | |
parent | 0fe34b7bbc9a8e089bbb4d0fe401b09095a571eb (diff) |
mesa: Include GIT SHA1 in GL version string
Reviewed-by: Corbin Simpson <MostAwesomeDude@gmail.com>
Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/extract_git_sha1 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/extract_git_sha1 b/bin/extract_git_sha1 new file mode 100755 index 0000000000..e6e6731a36 --- /dev/null +++ b/bin/extract_git_sha1 @@ -0,0 +1,10 @@ +#!/bin/sh +touch src/mesa/main/git_sha1.h +if which git > /dev/null; then + # Extract the 7-digit "short" SHA1 for the current HEAD, convert + # it to a string, and wrap it in a #define. This is used in + # src/mesa/main/version.c to put the GIT SHA1 in the GL_VERSION string. + git log -n 1 --oneline |\ + sed 's/^\([^ ]*\) .*/#define MESA_GIT_SHA1 "git-\1"/' \ + > src/mesa/main/git_sha1.h +fi |