mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 13:10:10 +01:00
mesa: don't touch git_sha1.h if sha1 didn't change
Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
f60235e73a
commit
02a6c9428d
2 changed files with 9 additions and 2 deletions
|
|
@ -1,10 +1,16 @@
|
|||
#!/bin/sh
|
||||
touch src/mesa/main/git_sha1.h
|
||||
if [ ! -f src/mesa/main/git_sha1.h ]; then
|
||||
touch src/mesa/main/git_sha1.h
|
||||
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
|
||||
> 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
|
||||
|
|
|
|||
1
src/mesa/main/.gitignore
vendored
1
src/mesa/main/.gitignore
vendored
|
|
@ -3,3 +3,4 @@ api_exec_es2.c
|
|||
get_es1.c
|
||||
get_es2.c
|
||||
git_sha1.h
|
||||
git_sha1.h.tmp
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue