Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7dbeed7

Browse files
committed
Use = instead of == as operator to test
1 parent ac7836a commit 7dbeed7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18884,7 +18884,7 @@ _ACEOF
1888418884

1888518885
# wchar_t is only usable if it maps to an unsigned type
1888618886
if test "$unicode_size" = "$ac_cv_sizeof_wchar_t" \
18887-
-a "$ac_cv_wchar_t_signed" == "no"
18887+
-a "$ac_cv_wchar_t_signed" = "no"
1888818888
then
1888918889
PY_UNICODE_TYPE="wchar_t"
1889018890

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2760,7 +2760,7 @@ else
27602760

27612761
# wchar_t is only usable if it maps to an unsigned type
27622762
if test "$unicode_size" = "$ac_cv_sizeof_wchar_t" \
2763-
-a "$ac_cv_wchar_t_signed" == "no"
2763+
-a "$ac_cv_wchar_t_signed" = "no"
27642764
then
27652765
PY_UNICODE_TYPE="wchar_t"
27662766
AC_DEFINE(HAVE_USABLE_WCHAR_T, 1,

0 commit comments

Comments
 (0)