diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2018-08-10 02:33:38 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2018-08-10 02:53:37 +0200 |
commit | 9aaecc59ffcf98562affaf01ed39905ad54051c8 (patch) | |
tree | bb90fb6abb2f103ac29c6a7a5cf82e42125127ce /build-aux | |
parent | f8497db5d14eb139820173dccba58989c4f9ca5c (diff) |
generate short git version (if a valid git repository) as autoconf project version
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/git-version-gen | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/build-aux/git-version-gen b/build-aux/git-version-gen new file mode 100755 index 0000000..0f3978d --- /dev/null +++ b/build-aux/git-version-gen @@ -0,0 +1,15 @@ +#!/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 + cat "$(dirname $0)/../.tarball-version" +elif git diff --quiet HEAD -- configure.ac ; then + # configure.ac is not modified + printf '%s-git' `git describe --always HEAD` +else # configure.ac is modified + printf '%s-dirty' `git describe --always HEAD` +fi + +exit 0 |