From: bonzini Date: Thu, 11 Jan 2007 14:53:06 +0000 (+0000) Subject: 2007-01-11 Paolo Bonzini X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=16c9b2e3b5218c241299c871c76ee972a48c4448;p=thirdparty%2Fgcc.git 2007-01-11 Paolo Bonzini * 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 --- diff --git a/ChangeLog b/ChangeLog index 98470d3d7592..1b954619a3ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-01-11 Paolo Bonzini + + * configure.in: Change == to = in test command. + * configure: Regenerate. + 2007-01-11 Paolo Bonzini Nick Clifton Kaveh R. Ghazi diff --git a/configure b/configure index 9cc4b21277e2..7a56401d7f2e 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" diff --git a/configure.in b/configure.in index 06ba566c3aba..8b2071a92176 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"