diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-10-23 10:03:47 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-10-23 10:03:47 +0000 |
commit | 82d97a59f8ec297add800c0e36774503d0f05f07 (patch) | |
tree | 8713e7612a54f2d6f208304b409435944e909473 /config/acx.m4 | |
parent | 442cf14550f48b8610c08293757dbb0f09fd0062 (diff) | |
download | gcc-82d97a59f8ec297add800c0e36774503d0f05f07.tar.gz |
config:
* acx.m4 (ACX_CHECK_CYGWIN_CAT_WORKS): Use = with test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@153493 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config/acx.m4')
-rw-r--r-- | config/acx.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/acx.m4 b/config/acx.m4 index cea08b7204f..b559c03ebdf 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 |