]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
use = instead of == as operator for test
authorMatthias Klose <doko@ubuntu.com>
Fri, 24 Dec 2004 08:24:21 +0000 (08:24 +0000)
committerMatthias Klose <doko@ubuntu.com>
Fri, 24 Dec 2004 08:24:21 +0000 (08:24 +0000)
configure
configure.in

index 0bb86b194c49f4b8bf8e13e231770fca06bbd4e7..583c3a887703d2d1ae73759e9eb1081f8068ccad 100755 (executable)
--- 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"
 
index 2ef4d53311cdb1afabe75a457a751f2c27cd7e50..fba1a12cfcfc1267e07d649fe1ac1f6f998cb021 100644 (file)
@@ -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,