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 /configure | |
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
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |