From 704e01fc69ebf6302aa1876906805147248abdaa Mon Sep 17 00:00:00 2001 From: marha Date: Wed, 6 Apr 2011 20:33:32 +0000 Subject: xserver libX11 libxcb mesa git update 6 Apr 2011 --- mesalib/bin/extract_git_sha1 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 mesalib/bin/extract_git_sha1 (limited to 'mesalib/bin/extract_git_sha1') 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 -- cgit v1.2.3