Elbert Pol <[EMAIL PROTECTED]> wrote: ... > Hope it's fixable :) Anything is fixable ;-)
> Jim Meyering wrote: >> Elbert Pol<[EMAIL PROTECTED]> wrote: ... >>> make.exe[2]: Entering directory `U:/coreutils-6.11/man' >>> make.exe[2]: *** No rule to make target `uname.1 >>> ', needed by `all-am'. Stop. Hi Elbert, Thanks for the details. I should have seen it the first time: The mention of uname.1 includes something fishy that makes the trailing "'" appear on the next line. More carriage return problems. Here's a snapshot with the fix: http://meyering.net/cu/coreutils-6.11.11-0bc881.tar.lzma Here's the patch I expect to push, once you confirm it solves that problem: >From 0bc8813b1e40435ced17c555149e26c5aadbdda6 Mon Sep 17 00:00:00 2001 From: Jim Meyering <[EMAIL PROTECTED]> Date: Tue, 22 Apr 2008 10:52:37 +0200 Subject: [PATCH] Accommodate building on OS/2 (www.ecomstation.com Ecs v2 rc4) * configure.ac: Filter out carriage returns in more places. Reported by Elbert Pol, details here: http://thread.gmane.org/gmane.org.fsf.announce/867/focus=13332 Signed-off-by: Jim Meyering <[EMAIL PROTECTED]> --- configure.ac | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 4cd0d7c..adf2903 100644 --- a/configure.ac +++ b/configure.ac @@ -259,7 +259,7 @@ mk="$srcdir/src/Makefile.am" v=EXTRA_PROGRAMS for gl_i in `sed -n '/^'$v' =/,/[[^\]]$/p' $mk \ | sed 's/^ *//;/^\$.*/d;/^'$v' =/d' \ - | tr -s '\\012\\\\' ' '`; do + | tr -s '\\015\\012\\\\' ' '`; do gl_ADD_PROG([optional_bin_progs], $gl_i) done @@ -310,10 +310,11 @@ case " $optional_bin_progs " in *) INSTALL_SU=no ;; esac -MAN=`echo "$optional_bin_progs "|sed 's/ /.1 /g;s/ $//'` +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 '\012' ' '; echo` +MAN=`for m in $MAN; do test $m = ginstall.1 && m=install.1; echo $m; done \ + | 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 -- 1.5.5.76.gae22a _______________________________________________ Bug-coreutils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-coreutils
