From: Matthias Klose <doko@ubuntu.com>
Date: Fri, 24 Dec 2004 08:22:17 +0000 (+0000)
Subject: Use = instead of == as operator to test
X-Git-Tag: v2.5a0~2219
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7dbeed7d2eb6ab36c2df0a3a7c89331a135cc419;p=python

Use = instead of == as operator to test
---

diff --git a/configure b/configure
index 6bc1c4eac1..1d538e45e6 100755
--- a/configure
+++ b/configure
@@ -18884,7 +18884,7 @@ _ACEOF
 
   # wchar_t is only usable if it maps to an unsigned type
   if test "$unicode_size" = "$ac_cv_sizeof_wchar_t" \
-          -a "$ac_cv_wchar_t_signed" == "no"
+          -a "$ac_cv_wchar_t_signed" = "no"
   then
     PY_UNICODE_TYPE="wchar_t"
 
diff --git a/configure.in b/configure.in
index 7986cbc136..68720e798c 100644
--- a/configure.in
+++ b/configure.in
@@ -2760,7 +2760,7 @@ else
 
   # wchar_t is only usable if it maps to an unsigned type
   if test "$unicode_size" = "$ac_cv_sizeof_wchar_t" \
-          -a "$ac_cv_wchar_t_signed" == "no"
+          -a "$ac_cv_wchar_t_signed" = "no"
   then
     PY_UNICODE_TYPE="wchar_t"
     AC_DEFINE(HAVE_USABLE_WCHAR_T, 1,