postprocess/CustomTarget_signing.mk |    4 +---
 postprocess/signing/no_signing.txt  |   10 ----------
 2 files changed, 1 insertion(+), 13 deletions(-)

New commits:
commit 31653943cddff60a31fe0c31c09c555b6f4a77d7
Author:     Thorsten Behrens <[email protected]>
AuthorDate: Wed Feb 26 10:55:44 2025 +0100
Commit:     Thorsten Behrens <[email protected]>
CommitDate: Thu Feb 27 02:18:37 2025 +0100

    tdf#160568 start signing cli DLLs as well
    
    There does not seem to be any downside not signing those anymore (the
    2007er commit excluding them mentions rebasing, which is no longer
    used), and according to tdf#160568 a number of upsides. So lets start
    doing it now.
    
    Change-Id: If56a8c94dcbf431b55929142ddcb24a671e93a6e
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182213
    Tested-by: Jenkins
    Reviewed-by: Thorsten Behrens <[email protected]>

diff --git a/postprocess/CustomTarget_signing.mk 
b/postprocess/CustomTarget_signing.mk
index 27e397031c1a..bcd113718c60 100644
--- a/postprocess/CustomTarget_signing.mk
+++ b/postprocess/CustomTarget_signing.mk
@@ -19,7 +19,6 @@ TIMESTAMPURL ?= 
"http://timestamp.globalsign.com/scripts/timestamp.dll";
 
 $(gb_CustomTarget_workdir)/postprocess/signing/signing.done: \
        $(SRCDIR)/postprocess/signing/signing.pl \
-       $(SRCDIR)/postprocess/signing/no_signing.txt \
        $(call gb_Module_get_target,extras) \
        $(call gb_Postprocess_get_target,AllLibraries) \
        $(call gb_Postprocess_get_target,AllExecutables) \
@@ -31,8 +30,7 @@ $(gb_CustomTarget_workdir)/postprocess/signing/signing.done:
        $(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),PRL)
 ifeq ($(COM),MSC)
        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 && \
+       echo "$(foreach lib,$(gb_MERGEDLIBS),$(call 
gb_Library_get_filename,$(lib)))" | tr ' ' '
' > $$EXCLUDELIST && \
        $(if $(BUILD_X64),chmod u+w $(foreach 
lib,$(MSVC_DLLS),$(INSTDIR)/program/shlxthdl/$(lib)) &&) \
        $(PERL) $(SRCDIR)/postprocess/signing/signing.pl \
                        -e $$EXCLUDELIST \
diff --git a/postprocess/signing/no_signing.txt 
b/postprocess/signing/no_signing.txt
deleted file mode 100644
index 53aaac652c2b..000000000000
--- a/postprocess/signing/no_signing.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-cli_basetypes.dll
-cli_cppuhelper.dll
-cli_uretypes.dll
-cli_oootypes.dll
-cli_ure.dll
-policy.1.0.cli_uretypes.dll
-policy.1.0.cli_oootypes.dll
-policy.1.0.cli_ure.dll
-policy.1.0.cli_cppuhelper.dll
-policy.1.0.cli_basetypes.dll

Reply via email to