From 8555ddbe76cd4ade9ebaadb0fcf77018e4f20b3b Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 10 Jul 1998 13:22:23 +0000 Subject: Patch from David Fiddes . Comments below: With a bit of help from Ralf I was able to trace the problem with sed. It was a typo, sed should have had it's params surrounded by 's rather than "s which bash picked up and discarded. The patch is enclosed. Ralf and I aren't sure why configure didn't just stop at this point... The rest of configure/build went OK because there are two sections where the \\-for-/ hack is implemented and the other one is more important and worked just fine. --- aclocal/canonicalize-tools.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aclocal') diff --git a/aclocal/canonicalize-tools.m4 b/aclocal/canonicalize-tools.m4 index 7875b3f8dd..42d798706f 100644 --- a/aclocal/canonicalize-tools.m4 +++ b/aclocal/canonicalize-tools.m4 @@ -15,7 +15,7 @@ AC_DEFUN(RTEMS_GCC_PRINT, *cygwin32*) dnl FIXME: Hack for cygwin/egcs reporting mixed '\\' and '/' dnl Should be removed once cygwin/egcs reports '/' only - $1=`$CC_FOR_TARGET --print-prog-name=$2 | sed -e "s%\\\\%/%g" ` + $1=`$CC_FOR_TARGET --print-prog-name=$2 | sed -e 's%\\\\%/%g' ` ;; *) $1=`$CC_FOR_TARGET --print-prog-name=$2` -- cgit v1.2.3