mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 04:00:10 +01:00
Reviewed-by: Corbin Simpson <MostAwesomeDude@gmail.com> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
10 lines
400 B
Bash
Executable file
10 lines
400 B
Bash
Executable file
#!/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
|