summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2007-11-03 18:04:40 +0100
committerJim Meyering <meyering@redhat.com>2007-11-03 18:04:40 +0100
commitae559eabcda8db7e8daf759cda89683a1d5ad7ed (patch)
treea630ca9684ea1060c6207f633d22c8d1e92593a6
parent8beb69b1480485bb81b16c0eb90f49d76cd8dd94 (diff)
downloadcoreutils-ae559eabcda8db7e8daf759cda89683a1d5ad7ed.tar.xz
Sync copyright and scriptversion bits from gnulib.
* build-aux/git-version-gen: No semantic change.
-rw-r--r--ChangeLog3
-rwxr-xr-xbuild-aux/git-version-gen26
2 files changed, 29 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ca1ac5d38..e63a3e816 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2007-11-03 Jim Meyering <meyering@redhat.com>
+ Sync copyright and scriptversion bits from gnulib.
+ * build-aux/git-version-gen: No semantic change.
+
Change the first '-' to '.' in the snapshot version string,
e.g., 6.9-377-08144 -> 6.9.377-08144
* build-aux/git-version-gen: ... and add comments.
diff --git a/build-aux/git-version-gen b/build-aux/git-version-gen
index 4e8ffc6ea..3af7e0042 100755
--- a/build-aux/git-version-gen
+++ b/build-aux/git-version-gen
@@ -1,5 +1,24 @@
#!/bin/sh
# Print a version string.
+scriptversion=2007-11-03.18
+
+# Copyright (C) 2007 Free Software Foundation
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+# 02110-1301, USA.
+
# This script is derived from GIT-VERSION-GEN from GIT: http://git.or.cz/.
# It may be run two ways:
# - from a git repository in which the git-describe command below
@@ -63,3 +82,10 @@ esac
# Omit the trailing newline, so that m4_esyscmd can use the result directly.
echo "$v" | tr -d '\012'
+
+# Local variables:
+# eval: (add-hook 'write-file-hooks 'time-stamp)
+# time-stamp-start: "scriptversion="
+# time-stamp-format: "%:y-%02m-%02d.%02H"
+# time-stamp-end: "$"
+# End: