diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-11 14:53:06 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-11 14:53:06 +0000 |
commit | 16c9b2e3b5218c241299c871c76ee972a48c4448 (patch) | |
tree | df830b46efa7edb815a6c75707707ab2d1c7e0ff /configure | |
parent | 6a6e7e2f617a263369c0d6188f0fdf7913b83253 (diff) | |
download | gcc-16c9b2e3b5218c241299c871c76ee972a48c4448.tar.gz |
2007-01-11 Paolo Bonzini <bonzini@gnu.org>
* configure.in: Change == to = in test command.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120674 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 9cc4b21277e..7a56401d7f2 100755 --- a/configure +++ b/configure @@ -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" |