configure.ac: fix typo

I hope it fixes https://ci.libreoffice.org/job/lo_tb_master_win_analyze/
where ENABLE_MSVC_ANALYZE=1 is not doing anything

Change-Id: Ibc2ca6151720d152400f80da611093ec4679e21e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180376
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Tested-by: Xisco Fauli <xiscofauli@libreoffice.org>
This commit is contained in:
Xisco Fauli
2025-01-17 09:37:45 +01:00
parent a1a3fd98dc
commit 2761a14646

View File

@@ -14395,7 +14395,7 @@ ENABLE_MSVC_ANALYZE=
AC_MSG_CHECKING([whether to use MSVC /analyze])
if test -n "$enable_msvc_analyze" -a "$enable_msvc_analyze" != "no"; then
if test "$_os" = "WINNT"; then
ENABLE_MSVC_ANALYZE=Yes
ENABLE_MSVC_ANALYZE=yes
AC_MSG_RESULT([yes])
else
AC_MSG_ERROR([--enable-msvc-analyze is only supported on Windows])