summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2004-12-24 08:22:17 +0000
committerMatthias Klose <doko@ubuntu.com>2004-12-24 08:22:17 +0000
commit243479e2357c5213a80f663fef35d08c83eee996 (patch)
tree4c8fd77a34e2118847ff4e13917a8c132a5d0af8 /configure.in
parentdb07f21f1e5f17a5e300179dea7f704258e12e8d (diff)
downloadcpython-243479e2357c5213a80f663fef35d08c83eee996.tar.gz
Use = instead of == as operator to test
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
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,