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
This commit is contained in:
parent
67214c1624
commit
d943d7c4d9
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
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>
|
||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue