changeset 9748:c0c8409cb7a2

* build-aux/git-version-gen: Adjust a comment and the Usage string. Signed-off-by: Jim Meyering <meyering@redhat.com>
author Jim Meyering <meyering@redhat.com>
date Sun, 02 Mar 2008 17:19:20 +0100
parents 33ce4386f256
children daf5ba9fe2d9
files ChangeLog build-aux/git-version-gen
diffstat 2 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Mar 02 17:17:28 2008 +0100
+++ b/ChangeLog	Sun Mar 02 17:19:20 2008 +0100
@@ -1,5 +1,7 @@
 2008-03-02  Jim Meyering  <meyering@redhat.com>
 
+	* build-aux/git-version-gen: Adjust a comment and the Usage string.
+
 	bootstrap: sync from coreutils again
 	* build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
 
--- a/build-aux/git-version-gen	Sun Mar 02 17:17:28 2008 +0100
+++ b/build-aux/git-version-gen	Sun Mar 02 17:19:20 2008 +0100
@@ -1,6 +1,6 @@
 #!/bin/sh
 # Print a version string.
-scriptversion=2008-02-08.11
+scriptversion=2008-03-02.16
 
 # Copyright (C) 2007 Free Software Foundation
 #
@@ -23,12 +23,12 @@
 # It may be run two ways:
 # - from a git repository in which the "git describe" command below
 #   produces useful output (thus requiring at least one signed tag)
-# - from a non-git-repo directory containing a .version file, which
+# - from a non-git-repo directory containing a .tarball-version file, which
 #   presumes this script is invoked like "./git-version-gen .tarball-version".
 
 case $# in
     1) ;;
-    *) echo 1>&2 "Usage: $0 \$srcdir/.version"; exit 1;;
+    *) echo 1>&2 "Usage: $0 \$srcdir/.tarball-version"; exit 1;;
 esac
 
 tarball_version_file=$1