blob: 0f3978d17f9191e9a31b0b2f1ef778be2b72e04e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|