From: Eric Blake Date: Mon, 26 Apr 2010 15:44:42 +0000 (-0600) Subject: git-version-gen: allow use on EBCDIC hosts X-Git-Tag: v0.1~4215 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=95d5b8747b7ba317f59fb69b0dee5dd42ab417e6;p=gnulib.git git-version-gen: allow use on EBCDIC hosts * build-aux/git-version-gen (dirty): Use literal rather than tying ourselves to ascii. Reported by Steve Goetze. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 94f0e576c..d09e5e02e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2010-04-26 Eric Blake + + git-version-gen: allow use on EBCDIC hosts + * build-aux/git-version-gen (dirty): Use literal rather than tying + ourselves to ascii. + Reported by Steve Goetze. + 2010-04-25 Bruno Haible netdb: Add support for GNULIB_POSIXCHECK. diff --git a/build-aux/git-version-gen b/build-aux/git-version-gen index e754c77d6..be85b6d88 100755 --- a/build-aux/git-version-gen +++ b/build-aux/git-version-gen @@ -1,6 +1,6 @@ #!/bin/sh # Print a version string. -scriptversion=2010-02-24.17; # UTC +scriptversion=2010-04-26.15; # UTC # Copyright (C) 2007-2010 Free Software Foundation, Inc. # @@ -140,7 +140,8 @@ case "$dirty" in esac # Omit the trailing newline, so that m4_esyscmd can use the result directly. -echo "$v" | tr -d '\012' +echo "$v" | tr -d ' +' # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp)