summaryrefslogtreecommitdiff
path: root/build-aux/git-version-gen
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2011-11-13 14:43:35 +0100
committerSimon Josefsson <simon@josefsson.org>2011-11-13 14:43:35 +0100
commitb50f730683e190d626bf6997fdced1fb7bf3a700 (patch)
treee2e901d005b1ad1c78c14cc669da30545fd898b7 /build-aux/git-version-gen
parentd67fde90c62c94987893824ae2e5315c21a7a796 (diff)
downloadgnulib-b50f730683e190d626bf6997fdced1fb7bf3a700.tar.gz
git-version-gen: Add --prefix.
* build-aux/git-version-gen: Add --prefix to configure the tag match string.
Diffstat (limited to 'build-aux/git-version-gen')
-rwxr-xr-xbuild-aux/git-version-gen12
1 files changed, 8 insertions, 4 deletions
diff --git a/build-aux/git-version-gen b/build-aux/git-version-gen
index 3234bddc5f..800c10719f 100755
--- a/build-aux/git-version-gen
+++ b/build-aux/git-version-gen
@@ -1,6 +1,6 @@
#!/bin/sh
# Print a version string.
-scriptversion=2011-11-13.10; # UTC
+scriptversion=2011-11-13.13; # UTC
# Copyright (C) 2007-2011 Free Software Foundation, Inc.
#
@@ -85,6 +85,8 @@ Print a version string.
Options:
+ --prefix prefix of git tags (default 'v')
+
--help display this help and exit
--version output version information and exit
@@ -94,6 +96,7 @@ while test $# -gt 0; do
case $1 in
--help) echo "$usage"; exit 0;;
--version) echo "$version"; exit 0;;
+ --prefix) shift; prefix="$1";;
-*)
echo "$0: Unknown option \`$1'." >&2
echo "$0: Try \`--help' for more information." >&2
@@ -117,6 +120,7 @@ if test -z "$tarball_version_file"; then
fi
tag_sed_script="${tag_sed_script:-s/x/x/}"
+prefix="${prefix:-v}"
nl='
'
@@ -146,11 +150,11 @@ then
# directory, and "git describe" output looks sensible, use that to
# derive a version string.
elif test "`git log -1 --pretty=format:x . 2>&1`" = x \
- && v=`git describe --abbrev=4 --match='v*' HEAD 2>/dev/null \
+ && v=`git describe --abbrev=4 --match="$prefix*" HEAD 2>/dev/null \
|| git describe --abbrev=4 HEAD 2>/dev/null` \
&& v=`printf '%s\n' "$v" | sed "$tag_sed_script"` \
&& case $v in
- v[0-9]*) ;;
+ $prefix*) ;;
*) (exit 1) ;;
esac
then
@@ -183,7 +187,7 @@ else
v=UNKNOWN
fi
-v=`echo "$v" |sed 's/^v//'`
+v=`echo "$v" |sed "s/^$prefix//"`
# Test whether to append the "-dirty" suffix only if the version
# string we're using came from git. I.e., skip the test if it's "UNKNOWN"