summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2011-03-31 11:42:01 -0700
committerIan Romanick <ian.d.romanick@intel.com>2011-04-05 11:21:01 -0700
commitde579a16298e29358fec08bd7cfe3e505674705a (patch)
treec6876be5e7eda7e592f0be3b3e38dd30e82fca80 /bin
parent0fe34b7bbc9a8e089bbb4d0fe401b09095a571eb (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-xbin/extract_git_sha110
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/extract_git_sha1 b/bin/extract_git_sha1
new file mode 100755
index 00000000000..e6e6731a36c
--- /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