diff options
author | Matthias Klose <doko@ubuntu.com> | 2004-12-24 08:22:17 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2004-12-24 08:22:17 (GMT) |
commit | 7dbeed7d2eb6ab36c2df0a3a7c89331a135cc419 (patch) | |
tree | fa7d246eab68439db6803d528419d5cc1b3e2187 /configure | |
parent | ac7836ae55afe55df0257266fe6137c780f7993d (diff) | |
download | cpython-7dbeed7d2eb6ab36c2df0a3a7c89331a135cc419.zip cpython-7dbeed7d2eb6ab36c2df0a3a7c89331a135cc419.tar.gz cpython-7dbeed7d2eb6ab36c2df0a3a7c89331a135cc419.tar.bz2 |
Use = instead of == as operator to test
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |