diff options
author | David Tardon <dtardon@redhat.com> | 2013-07-23 11:58:41 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-07-23 12:06:59 +0200 |
commit | 6872ad4764b5924a32f0929cbdbd13fb25ead885 (patch) | |
tree | 3daa26836abae59b680c28265c6b489370fc71d8 /postprocess | |
parent | 82447189ccfc662f86ec00f5001527cc997f5020 (diff) |
it is not possible to sign libs that are in use
... so we have to make sure they are not, by delaying the signing after
all unit tests have been run. This is just a workaround; IMHO the real
fix is fdo#63315 "sign windows binaries during build".
Change-Id: Ia26826ec7d324f840f2606b1928bea71cb4f0c48
Diffstat (limited to 'postprocess')
-rw-r--r-- | postprocess/CustomTarget_signing.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/postprocess/CustomTarget_signing.mk b/postprocess/CustomTarget_signing.mk index fa0130bf3bde..3e2eec42cb64 100644 --- a/postprocess/CustomTarget_signing.mk +++ b/postprocess/CustomTarget_signing.mk @@ -22,7 +22,8 @@ $(call gb_CustomTarget_get_workdir,postprocess/signing)/signing.done: \ $(SRCDIR)/postprocess/signing/no_signing.txt \ $(call gb_CustomTarget_get_workdir,postprocess/signing)/signing.done : \ - $(call gb_Postprocess_get_target,AllLibraries) $(call gb_Postprocess_get_target,AllExecutables) + $(call gb_Postprocess_get_target,AllLibraries) $(call gb_Postprocess_get_target,AllExecutables) \ + $(call gb_Postprocess_get_target,AllModuleTests) $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),PRL,2) ifeq ($(COM),MSC) ifneq ($(ENABLE_DBGUTIL),TRUE) |