From 1743f417bbf26e77bf105f73bae1a40b1b4a6562 Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Fri, 24 Dec 2004 08:24:21 +0000 Subject: [PATCH] use = instead of == as operator for test --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 0bb86b194c49..583c3a887703 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 2ef4d53311cd..fba1a12cfcfc 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, -- 2.47.3