This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[committed] Fix ksh non-portability


Spotted by Brent Albertson (and very quickly so) and reported by private e-mail. And I'm done for today.

Paolo

2007-01-11 Paolo Bonzini <bonzini@gnu.org>

        * configure.in: Change == to = in test command.
        * configure: Regenerate.

--- configure.in.orig   Thu Jan 11 09:29:36 2007
+++ configure.in        Thu Jan 11 09:29:50 2007
@@ -1131,7 +1131,7 @@
   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"


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]