autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

git-version-gen not EBCDIC compatible


From: Steve Goetze
Subject: git-version-gen not EBCDIC compatible
Date: Mon, 26 Apr 2010 09:16:46 -0400

The following line in m4-1.4.14/build-aux/git-version-gen causes a build
failure on z/OS (EBCDIC codeset):

# Omit the trailing newline, so that m4_esyscmd can use the result directly.
echo "$v" | tr -d '\012'

Octal 12 does not represent new line in EBCDIC.  Is there a reason that this
can't be:

# Omit the trailing newline, so that m4_esyscmd can use the result directly.
echo "$v" | tr -d '\n'

Regards,
--Steve Goetze


reply via email to

[Prev in Thread] Current Thread [Next in Thread]