summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2004-12-24 08:22:17 (GMT)
committerMatthias Klose <doko@ubuntu.com>2004-12-24 08:22:17 (GMT)
commit7dbeed7d2eb6ab36c2df0a3a7c89331a135cc419 (patch)
treefa7d246eab68439db6803d528419d5cc1b3e2187
parentac7836ae55afe55df0257266fe6137c780f7993d (diff)
downloadcpython-7dbeed7d2eb6ab36c2df0a3a7c89331a135cc419.zip
cpython-7dbeed7d2eb6ab36c2df0a3a7c89331a135cc419.tar.gz
cpython-7dbeed7d2eb6ab36c2df0a3a7c89331a135cc419.tar.bz2
Use = instead of == as operator to test
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 6bc1c4e..1d538e4 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 7986cbc..68720e7 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,