summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2012-05-14 18:38:54 -0700
committerEric Anholt <eric@anholt.net>2012-06-11 09:28:00 -0700
commit07abd913b654a1a04a90db6203a92a14e4ae795a (patch)
tree39033b607336e60845b695014635ab77a7b6e95b /bin
parent743e505315b6be851618caed61981d7c1617bf45 (diff)
automake: Move top-level makefile to automake.
This is part of a series to fix our build issues in the automake case by hooking up the automatic Makefile regeneration support. The extract_git_sha1 is moved into src/mesa/Makefile so that we get correct dependency generation. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/extract_git_sha120
1 files changed, 0 insertions, 20 deletions
diff --git a/bin/extract_git_sha1 b/bin/extract_git_sha1
deleted file mode 100755
index 828387016b2..00000000000
--- a/bin/extract_git_sha1
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-if [ ! -f src/mesa/main/git_sha1.h ]; then
- touch src/mesa/main/git_sha1.h
-fi
-
-if [ ! -d .git ]; then
- exit
-fi
-
-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.tmp
- if ! cmp -s src/mesa/main/git_sha1.h.tmp src/mesa/main/git_sha1.h; then
- mv src/mesa/main/git_sha1.h.tmp src/mesa/main/git_sha1.h
- fi
-fi