postprocess/CustomTarget_signing.mk | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-)
New commits: commit 1061cf3fcb59dd8c92b7bc21a22e3a24bbd31abd Author: Stephan Bergmann <[email protected]> AuthorDate: Thu Dec 21 14:45:18 2023 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Thu Dec 21 15:47:05 2023 +0100 No good reason to not --enable-windows-build-signing with --enable-dbgutil ...at least for debug purposes? Change-Id: I02fc410109353ca3d421a6b8e0e1848df05cf479 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161126 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/postprocess/CustomTarget_signing.mk b/postprocess/CustomTarget_signing.mk index 6fdd4950f4cb..006438b54351 100644 --- a/postprocess/CustomTarget_signing.mk +++ b/postprocess/CustomTarget_signing.mk @@ -29,7 +29,6 @@ $(call gb_CustomTarget_get_workdir,postprocess/signing)/signing.done: $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),PRL,2) $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),PRL) ifeq ($(COM),MSC) -ifneq ($(ENABLE_DBGUTIL),TRUE) EXCLUDELIST=$(shell $(gb_MKTEMP)) && \ cat $(SRCDIR)/postprocess/signing/no_signing.txt > $$EXCLUDELIST && \ echo "$(foreach lib,$(gb_MERGEDLIBS),$(call gb_Library_get_filename,$(lib)))" | tr ' ' ' ' >> $$EXCLUDELIST && \ @@ -48,7 +47,7 @@ ifneq ($(ENABLE_DBGUTIL),TRUE) $(INSTDIR)/program/*.com \ $(INSTDIR)/program/soffice.bin \ $(INSTDIR)/program/unopkg.bin \ - $(INSTDIR)/program/pyuno.pyd \ + $(INSTDIR)/program/pyuno$(if $(MSVC_USE_DEBUG_RUNTIME),_d).pyd \ $(INSTDIR)/$(LIBO_BIN_FOLDER)/python-core-$(PYTHON_VERSION)/bin/*.exe \ $(INSTDIR)/$(LIBO_BIN_FOLDER)/python-core-$(PYTHON_VERSION)/lib/*.dll \ $(INSTDIR)/$(LIBO_BIN_FOLDER)/python-core-$(PYTHON_VERSION)/lib/*.pyd \ @@ -57,9 +56,6 @@ ifneq ($(ENABLE_DBGUTIL),TRUE) $(INSTDIR)/sdk/cli/*.dll \ $(INSTDIR)/sdk/bin/*.exe \ && rm $$EXCLUDELIST && touch $@ -else - @echo "Doing nothing on non product builds ..." -endif else @echo "Nothing to do, signing is Windows (MSC) only." endif
