diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2007-01-11 14:53:06 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2007-01-11 14:53:06 +0000 |
commit | d943d7c4d9c09dcd4ffea6c86f91c4e98e97dd21 (patch) | |
tree | df830b46efa7edb815a6c75707707ab2d1c7e0ff | |
parent | 67214c1624804a46050dfee3bd84f63b3593e86c (diff) | |
download | gcc-d943d7c4d9c09dcd4ffea6c86f91c4e98e97dd21.zip gcc-d943d7c4d9c09dcd4ffea6c86f91c4e98e97dd21.tar.gz gcc-d943d7c4d9c09dcd4ffea6c86f91c4e98e97dd21.tar.bz2 |
configure.in: Change == to = in test command.
2007-01-11 Paolo Bonzini <bonzini@gnu.org>
* configure.in: Change == to = in test command.
* configure: Regenerate.
From-SVN: r120674
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,9 @@ 2007-01-11 Paolo Bonzini <bonzini@gnu.org> + + * configure.in: Change == to = in test command. + * configure: Regenerate. + +2007-01-11 Paolo Bonzini <bonzini@gnu.org> Nick Clifton <nickc@redhat.com> Kaveh R. Ghazi <ghazi@caip.rutgets.edu> @@ -2363,7 +2363,7 @@ if test "x$with_gmp$with_gmp_include$with_gmp_lib" = x && test -d ${srcdir}/gmp; have_gmp=yes fi -if test -d ${srcdir}/gcc && test "x$have_gmp" == xno; then +if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then have_gmp=yes saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $gmpinc" diff --git a/configure.in b/configure.in index 06ba566..8b2071a 100644 --- a/configure.in +++ b/configure.in @@ -1131,7 +1131,7 @@ if test "x$with_gmp$with_gmp_include$with_gmp_lib" = x && test -d ${srcdir}/gmp; have_gmp=yes fi -if test -d ${srcdir}/gcc && test "x$have_gmp" == xno; then +if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then have_gmp=yes saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $gmpinc" |