configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 2761a14646da14cde30988c19cc22ee02a0281fd Author: Xisco Fauli <xiscofa...@libreoffice.org> AuthorDate: Fri Jan 17 09:37:45 2025 +0100 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Fri Jan 17 09:42:07 2025 +0100
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 <xiscofa...@libreoffice.org> Tested-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/configure.ac b/configure.ac index 6da72c76b577..740254251a29 100644 --- a/configure.ac +++ b/configure.ac @@ -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])