From: Bruno Haible Date: Wed, 11 Jun 2008 06:06:56 +0000 (+0200) Subject: fix build failure on AIX 4 X-Git-Tag: v7.0~196 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8253a9aeb4b27b60e654610ad07f01d2ddb4767b;p=platform%2Fupstream%2Fcoreutils.git 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. --- diff --git a/configure.ac b/configure.ac index 3c0e100..464bea2 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