diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2017-05-09 13:23:59 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2017-05-09 13:31:16 +0200 |
commit | 5e062501eb6c3abe5219777fd9267702689785c7 (patch) | |
tree | 65dd38a1dbff49a2658917b86fd48a70274edfa6 /postprocess | |
parent | c1a87147d71b20754bd757e115f82890992ec394 (diff) |
cannot sign read-only files, so u+w the redistributables
Change-Id: I5290d2093555d00e7b7cd4e21098d54af58ee6b8
Diffstat (limited to 'postprocess')
-rw-r--r-- | postprocess/CustomTarget_signing.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/postprocess/CustomTarget_signing.mk b/postprocess/CustomTarget_signing.mk index 23a81ef68654..ae66c4eaa0f8 100644 --- a/postprocess/CustomTarget_signing.mk +++ b/postprocess/CustomTarget_signing.mk @@ -32,6 +32,7 @@ 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 ' ' '\n' >> $$EXCLUDELIST && \ + chmod u+w $(foreach lib,$(MSVC_DLLS),$(INSTDIR)/program/shlxthdl/$(lib)) && \ $(PERL) $(SRCDIR)/postprocess/signing/signing.pl \ -e $$EXCLUDELIST \ -l $(subst .done,_log.txt,$@) \ |