aboutsummaryrefslogtreecommitdiff
path: root/config/acx.m4
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2009-11-20 10:12:01 +0000
committerPaolo Bonzini <pbonzini@redhat.com>2009-11-20 10:12:01 +0000
commit7a352648530153761095ffb3837be14a36f8988e (patch)
tree05f3036750f73ebc6e2632795e92ccc6a3a38e08 /config/acx.m4
parent04fd8bea65c43227cab3ad0b29b8b3874afeaf2d (diff)
downloadnewlib-7a352648530153761095ffb3837be14a36f8988e.zip
newlib-7a352648530153761095ffb3837be14a36f8988e.tar.gz
newlib-7a352648530153761095ffb3837be14a36f8988e.tar.bz2
sync config with gcc:
2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> * acx.m4 (ACX_CHECK_CYGWIN_CAT_WORKS): Use = with test.
Diffstat (limited to 'config/acx.m4')
-rw-r--r--config/acx.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/config/acx.m4 b/config/acx.m4
index cea08b7..b559c03 100644
--- a/config/acx.m4
+++ b/config/acx.m4
@@ -605,7 +605,7 @@ dnl # See binutils PR 4334 for more details.
AC_DEFUN([ACX_CHECK_CYGWIN_CAT_WORKS],[
AC_MSG_CHECKING([to see if cat works as expected])
echo a >cygwin-cat-check
-if test `cat cygwin-cat-check` == a ; then
+if test `cat cygwin-cat-check` = a ; then
rm cygwin-cat-check
AC_MSG_RESULT(yes)
else