summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2009-11-20 10:12:01 +0000
committerPaolo Bonzini <bonzini@gnu.org>2009-11-20 10:12:01 +0000
commitdcc1615fd81c9a87677cd5b7138c12eab997b60f (patch)
tree613362c05427c610f41ba7dcd1a703026e7e22a3 /config
parent0cf1607e505670888258c34ca56f060ce7bd484d (diff)
downloadbinutils-redhat-dcc1615fd81c9a87677cd5b7138c12eab997b60f.tar.gz
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')
-rw-r--r--config/ChangeLog4
-rw-r--r--config/acx.m42
2 files changed, 5 insertions, 1 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index c4b4562870..7b6ded03d5 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -8,6 +8,10 @@
* largefile.m4: New file.
+2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
+
+ * acx.m4 (ACX_CHECK_CYGWIN_CAT_WORKS): Use = with test.
+
2009-09-09 Paolo Bonzini <bonzini@gnu.org>
* stdint.m4 (GCC_HEADER_STDINT): Revert changes to this macro in
diff --git a/config/acx.m4 b/config/acx.m4
index cea08b7204..b559c03ebd 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