summaryrefslogtreecommitdiffstats
path: root/aclocal/canonicalize-tools.m4
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-07-10 13:22:23 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-07-10 13:22:23 +0000
commit8555ddbe76cd4ade9ebaadb0fcf77018e4f20b3b (patch)
tree141af305da3ac6fb7dfa0fb23b080a416b67c312 /aclocal/canonicalize-tools.m4
parentAdded set attributes routine but did not hook it in to the table. (diff)
downloadrtems-8555ddbe76cd4ade9ebaadb0fcf77018e4f20b3b.tar.bz2
Patch from David Fiddes <D.J.Fiddes@hw.ac.uk>. 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.
Diffstat (limited to 'aclocal/canonicalize-tools.m4')
-rw-r--r--aclocal/canonicalize-tools.m42
1 files changed, 1 insertions, 1 deletions
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`