aboutsummaryrefslogtreecommitdiff
path: root/mesalib/bin
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-04-06 20:33:32 +0000
committermarha <marha@users.sourceforge.net>2011-04-06 20:33:32 +0000
commit704e01fc69ebf6302aa1876906805147248abdaa (patch)
tree55a4a5ffdf2d39f193d218785155a096966f30a6 /mesalib/bin
parenteaedc21febeadad4cf0e370f5d97e7bdb4470870 (diff)
downloadvcxsrv-704e01fc69ebf6302aa1876906805147248abdaa.tar.gz
vcxsrv-704e01fc69ebf6302aa1876906805147248abdaa.tar.bz2
vcxsrv-704e01fc69ebf6302aa1876906805147248abdaa.zip
xserver libX11 libxcb mesa git update 6 Apr 2011
Diffstat (limited to 'mesalib/bin')
-rw-r--r--mesalib/bin/extract_git_sha110
1 files changed, 10 insertions, 0 deletions
diff --git a/mesalib/bin/extract_git_sha1 b/mesalib/bin/extract_git_sha1
new file mode 100644
index 000000000..cf3006f8f
--- /dev/null
+++ b/mesalib/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