summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--aclocal.m42
-rw-r--r--configure14
2 files changed, 8 insertions, 8 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 5ca10a3f01..8df0d272fa 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -276,7 +276,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`
diff --git a/configure b/configure
index 6277026df0..5d12803229 100644
--- a/configure
+++ b/configure
@@ -1775,7 +1775,7 @@ else
# native tools or uses prefixes for gnutools (e.g. gas instead of as)
case $host_os in
*cygwin32*)
- AR_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=ar | sed -e "s%\\\\%/%g" `
+ AR_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=ar | sed -e 's%\\\\%/%g' `
;;
*)
AR_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=ar`
@@ -1858,7 +1858,7 @@ else
# native tools or uses prefixes for gnutools (e.g. gas instead of as)
case $host_os in
*cygwin32*)
- AS_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=as | sed -e "s%\\\\%/%g" `
+ AS_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=as | sed -e 's%\\\\%/%g' `
;;
*)
AS_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=as`
@@ -1941,7 +1941,7 @@ else
# native tools or uses prefixes for gnutools (e.g. gas instead of as)
case $host_os in
*cygwin32*)
- LD_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=ld | sed -e "s%\\\\%/%g" `
+ LD_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=ld | sed -e 's%\\\\%/%g' `
;;
*)
LD_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=ld`
@@ -2024,7 +2024,7 @@ else
# native tools or uses prefixes for gnutools (e.g. gas instead of as)
case $host_os in
*cygwin32*)
- NM_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=nm | sed -e "s%\\\\%/%g" `
+ NM_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=nm | sed -e 's%\\\\%/%g' `
;;
*)
NM_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=nm`
@@ -2108,7 +2108,7 @@ else
# native tools or uses prefixes for gnutools (e.g. gas instead of as)
case $host_os in
*cygwin32*)
- RANLIB_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=ranlib | sed -e "s%\\\\%/%g" `
+ RANLIB_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=ranlib | sed -e 's%\\\\%/%g' `
;;
*)
RANLIB_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=ranlib`
@@ -2228,7 +2228,7 @@ else
# native tools or uses prefixes for gnutools (e.g. gas instead of as)
case $host_os in
*cygwin32*)
- OBJCOPY_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=objcopy | sed -e "s%\\\\%/%g" `
+ OBJCOPY_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=objcopy | sed -e 's%\\\\%/%g' `
;;
*)
OBJCOPY_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=objcopy`
@@ -2311,7 +2311,7 @@ else
# native tools or uses prefixes for gnutools (e.g. gas instead of as)
case $host_os in
*cygwin32*)
- SIZE_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=size | sed -e "s%\\\\%/%g" `
+ SIZE_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=size | sed -e 's%\\\\%/%g' `
;;
*)
SIZE_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=size`