From: Martin v. Löwis Date: Tue, 10 Sep 2002 09:19:45 +0000 (+0000) Subject: Use = instead of == in test. X-Git-Tag: v2.2.2b1~177 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=70c353a8b7669c045dbb58efdda3cd4d1f6189f9;p=thirdparty%2FPython%2Fcpython.git Use = instead of == in test. --- diff --git a/configure b/configure index 0be77232b64e..6f1df7820974 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.288.6.6 +# From configure.in Revision: 1.288.6.7 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -1996,7 +1996,7 @@ fi # some of the headers (Redhat 6 if kernel headers don't match glibc # headers). Thus, disable warnings. This can go away if autoconf 2.50 # is used, since it considers the gcc status to determine errors. -if test $GCC == yes +if test $GCC = yes then CPPFLAGS_save=$CPPFLAGS CPPFLAGS="$CPPFLAGS -w" @@ -2049,7 +2049,7 @@ fi done -if test $GCC == yes +if test $GCC = yes then CPPFLAGS=$CPPFLAGS_save fi diff --git a/configure.in b/configure.in index e5fa6dfdd972..d997e0c7debe 100644 --- a/configure.in +++ b/configure.in @@ -526,7 +526,7 @@ AC_HEADER_STDC # some of the headers (Redhat 6 if kernel headers don't match glibc # headers). Thus, disable warnings. This can go away if autoconf 2.50 # is used, since it considers the gcc status to determine errors. -if test $GCC == yes +if test $GCC = yes then CPPFLAGS_save=$CPPFLAGS CPPFLAGS="$CPPFLAGS -w" @@ -540,7 +540,7 @@ sys/param.h sys/poll.h sys/select.h sys/socket.h sys/time.h sys/times.h \ sys/un.h sys/utsname.h sys/wait.h pty.h term.h libutil.h \ ndbm.h db1/ndbm.h gdbm/ndbm.h sys/resource.h netpacket/packet.h) -if test $GCC == yes +if test $GCC = yes then CPPFLAGS=$CPPFLAGS_save fi