diff options
author | Bruno Haible <bruno@clisp.org> | 2008-06-11 08:06:56 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-06-11 08:09:46 +0200 |
commit | 8253a9aeb4b27b60e654610ad07f01d2ddb4767b (patch) | |
tree | 7eb26e3a2f8bd38e288db411b54fc53fb67351f8 | |
parent | a16bee4f071cea80445b0dd3648db3079e80eb43 (diff) | |
download | coreutils-8253a9aeb4b27b60e654610ad07f01d2ddb4767b.tar.xz |
fix build failure on AIX 4
* configure.ac: Fix unportable invocation of 'tr', introduced on
2008-04-22. Affects tr from at least AIX 4.3.2.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 3c0e100c7..464bea233 100644 --- a/configure.ac +++ b/configure.ac @@ -313,7 +313,7 @@ MAN=`echo "$optional_bin_progs "|sed 's/ /.1 /g;s/ $//'|tr -d '\\015\\012'` # Change ginstall.1 to "install.h" in $MAN. MAN=`for m in $MAN; do test $m = ginstall.1 && m=install.1; echo $m; done \ - | tr '\015\012' ' '; echo` + | tr '\015\012' ' '; echo` # Remove [.1, since writing a portable rule for it in man/Makefile.am # is not practical. The sed LHS below uses the autoconf quadrigraph |