1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-12 20:27:06 +01:00

Adding git info to the configure output

This commit is contained in:
Guido Cossu
2016-11-10 18:44:36 +00:00
parent a783282b8b
commit 4e1ffdd17c
2 changed files with 27 additions and 0 deletions

19
scripts/configure.commit Executable file
View File

@ -0,0 +1,19 @@
#! /bin/sh
# Display the SHA1 of the commit in which configure.ac was last modified.
# If it's not checked in yet, use the SHA1 of HEAD plus -dirty.
#
if [ ! -d .git ] ; then
# if no .git directory, assume they're not using Git
printf 'unknown commit'
elif git diff --quiet HEAD -- configure.ac ; then
# configure.ac is not modified
printf 'commit: %s\n' `git rev-parse --short HEAD -- configure.ac`
printf 'branch: %s\n' `git rev-parse --abbrev-ref HEAD`
else # configure.ac is modified
printf 'commit: %s-dirty\n' `git rev-parse --short HEAD`
printf 'branch: %s\n' `git rev-parse --abbrev-ref HEAD`
fi