installing coreutils-6.12 on SunOS 5.9, with gcc-4.2.2 and gnu ld, "make" fails
because there are newlines in the @MAN@ variable:
Makefile:541: *** missing separator. Stop.
The following patch eliminates the newlines:
--- configure.ac 2008-06-18 19:05:11 -04:00
+++ configure.ac.new 2008-06-19 13:47:20 -04:00
@@ -313,7 +313,7 @@
# 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
EOF
--
Yorick
_______________________________________________
Bug-coreutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-coreutils