fix build failure on AIX 4
authorBruno Haible <bruno@clisp.org>
Wed, 11 Jun 2008 06:06:56 +0000 (08:06 +0200)
committerJim Meyering <meyering@redhat.com>
Wed, 11 Jun 2008 06:09:46 +0000 (08:09 +0200)
* configure.ac: Fix unportable invocation of 'tr', introduced on
2008-04-22.  Affects tr from at least AIX 4.3.2.

configure.ac

index 3c0e100..464bea2 100644 (file)
@@ -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