config_host.mk.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit be1d81eeeaef67ce01ea2e307207a5657b1ceecd Author: Xisco Fauli <xiscofa...@libreoffice.org> AuthorDate: Fri Jan 17 12:08:11 2025 +0100 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Fri Jan 17 15:54:11 2025 +0100 prevent assignment if ENABLE_MSVC_ANALYZE exists so export ENABLE_MSVC_ANALYZE=1 can be used in https://ci.libreoffice.org/job/lo_tb_master_win_analyze/ if a macro/variable is only used by make, then there's no need to use export in config_host.mk Change-Id: I31ebef21c92dfaa279bd3bf7e5e5ecef1e960ac2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180384 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/config_host.mk.in b/config_host.mk.in index 8baece8fb531..5cd8b0dbcede 100644 --- a/config_host.mk.in +++ b/config_host.mk.in @@ -153,7 +153,7 @@ export EMSCRIPTEN_WORKERJS=@EMSCRIPTEN_WORKERJS@ export ENABLE_ANDROID_LOK=@ENABLE_ANDROID_LOK@ export ENABLE_ANDROID_EDITING=@ENABLE_ANDROID_EDITING@ export ENABLE_AVAHI=@ENABLE_AVAHI@ -export ENABLE_MSVC_ANALYZE=@ENABLE_MSVC_ANALYZE@ +ENABLE_MSVC_ANALYZE?=@ENABLE_MSVC_ANALYZE@ export ENABLE_BREAKPAD=@ENABLE_BREAKPAD@ export DEFAULT_CRASHDUMP_VALUE=@DEFAULT_CRASHDUMP_VALUE@ export ENABLE_CAIRO_CANVAS=@ENABLE_CAIRO_CANVAS@