mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-20 02:36:16 +02:00
Shorten the snapshot version string by removing the "g".
* build-aux/git-version-gen: Remove git-describe's "g" that would always precede the abbreviated SHA1. Suggestion from Dmitry V. Levin.
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
2007-08-30 Jim Meyering <jim@meyering.net>
|
||||
|
||||
Shorten the snapshot version string by removing the "g".
|
||||
* build-aux/git-version-gen: Remove git-describe's "g" that would
|
||||
always precede the abbreviated SHA1. Suggestion from Dmitry V. Levin.
|
||||
|
||||
Perform the s,rm,/bin/rm, fix-up properly. No more kludge.
|
||||
* Makefile.am (EXTRA_DIST): Remove .kludge-stamp.
|
||||
(.kludge-stamp): Remove rule. Instead, ...
|
||||
|
||||
@@ -38,7 +38,8 @@ elif test -d .git \
|
||||
*) (exit 1) ;;
|
||||
esac
|
||||
then
|
||||
v=`echo "$v" | sed 's/-/./g'`;
|
||||
# Remove the "g" in git-describe's output string; change each - to a '.'
|
||||
v=`echo "$v" | sed 's/\(.*\)-g/\1-/;s/-/./g'`;
|
||||
else
|
||||
v=$default_version
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user