diff options
author | Mark Mitchell <mark@codesourcery.com> | 2000-11-04 23:00:26 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-11-04 23:00:26 +0000 |
commit | f73bbdca85524fdeadd2cfd7ad0411b58259665e (patch) | |
tree | 7d4144686790e5b0fbb7350e1b77347fc5cb3958 | |
parent | bfd2cff7a682133dee94bc8eeaceb1f9c4eed5ef (diff) | |
download | gcc-f73bbdca85524fdeadd2cfd7ad0411b58259665e.zip gcc-f73bbdca85524fdeadd2cfd7ad0411b58259665e.tar.gz gcc-f73bbdca85524fdeadd2cfd7ad0411b58259665e.tar.bz2 |
use of `test'.
* aclocal.m4: Regenerated.
* configure: Likewise.
From-SVN: r37262
-rw-r--r-- | libstdc++-v3/ChangeLog | 7 | ||||
-rw-r--r-- | libstdc++-v3/acinclude.m4 | 2 | ||||
-rw-r--r-- | libstdc++-v3/aclocal.m4 | 2 | ||||
-rwxr-xr-x | libstdc++-v3/configure | 2 |
4 files changed, 10 insertions, 3 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index a3fe89b..1350a04 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2000-11-04 Mark Mitchell <mark@codesourcery.com> + + * acinclude.m4 (GLIBCPP_CHECK_CTYPE_SUPPORT): Fix punctuation in + use of `test'. + * aclocal.m4: Regenerated. + * configure: Likewise. + 2000-11-04 Alexandre Oliva <aoliva@redhat.com> * acinclude.m4 (CXX): Prevent it from being cached. diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index 0484e30..09b993b 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -970,7 +970,7 @@ AC_DEFUN(GLIBCPP_CHECK_CTYPE_SUPPORT, [ fi dnl Test for <ctype> functionality -- IRIX - if test $ctype_default ="yes"; then + if test $ctype_default = "yes"; then AC_MSG_CHECKING([<ctype> for IRIX]) AC_TRY_COMPILE([#include <ctype.h>], [int diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4 index 0f9c5d0..6c80813 100644 --- a/libstdc++-v3/aclocal.m4 +++ b/libstdc++-v3/aclocal.m4 @@ -982,7 +982,7 @@ AC_DEFUN(GLIBCPP_CHECK_CTYPE_SUPPORT, [ fi dnl Test for <ctype> functionality -- IRIX - if test $ctype_default ="yes"; then + if test $ctype_default = "yes"; then AC_MSG_CHECKING([<ctype> for IRIX]) AC_TRY_COMPILE([#include <ctype.h>], [int diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 1f2dfe9..5854781 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -18038,7 +18038,7 @@ rm -f conftest* fi fi - if test $ctype_default ="yes"; then + if test $ctype_default = "yes"; then echo $ac_n "checking <ctype> for IRIX""... $ac_c" 1>&6 echo "configure:18044: checking <ctype> for IRIX" >&5 cat > conftest.$ac_ext <<EOF |