diff options
-rw-r--r-- | shell/Module_shell.mk | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/shell/Module_shell.mk b/shell/Module_shell.mk index cfe7aa061cef..c3c6d3f7c03c 100644 --- a/shell/Module_shell.mk +++ b/shell/Module_shell.mk @@ -61,9 +61,11 @@ $(eval $(call gb_Module_add_targets,shell,\ StaticLibrary_shlxthandler_common \ StaticLibrary_xmlparser \ WinResTarget_shlxthdl \ - CustomTarget_spsupp_idl \ - Library_spsupp \ - WinResTarget_spsupp \ + $(if $(DISABLE_ACTIVEX),,\ + CustomTarget_spsupp_idl \ + Library_spsupp \ + WinResTarget_spsupp \ + ) \ )) $(eval $(call gb_Module_add_check_targets,shell,\ @@ -79,7 +81,9 @@ $(eval $(call gb_Module_add_targets,shell,\ Library_shlxthdl_x64 \ StaticLibrary_shlxthandler_common_x64 \ StaticLibrary_xmlparser_x64 \ - Library_spsupp_x64 \ + $(if $(DISABLE_ACTIVEX),,\ + Library_spsupp_x64 \ + ) \ )) endif |