summaryrefslogtreecommitdiff
path: root/postprocess
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-10-31 13:52:16 +0100
committerMichael Stahl <mstahl@redhat.com>2013-10-31 14:52:58 +0100
commitb3902b1a1a5097cec393227ba8c57ef936ae4db6 (patch)
treed49de39945806e7f212cbe1feb3c29d6cacff966 /postprocess
parent663e29ef0ed33646b38d04b9a2a9843e7e1061e3 (diff)
postprocess: CustomTarget_signing: find libs in INSTDIR
... not sure if it wouldn't be better to do this directly when linking, but what do i know about this signing stuff anyway... Change-Id: Iabebf21dd8c0198afb4fd03403fca3ca8a0c9b22
Diffstat (limited to 'postprocess')
-rw-r--r--postprocess/CustomTarget_signing.mk9
1 files changed, 8 insertions, 1 deletions
diff --git a/postprocess/CustomTarget_signing.mk b/postprocess/CustomTarget_signing.mk
index 3e2eec42cb64..40f7250f3523 100644
--- a/postprocess/CustomTarget_signing.mk
+++ b/postprocess/CustomTarget_signing.mk
@@ -33,7 +33,14 @@ ifneq ($(ENABLE_DBGUTIL),TRUE)
$(if $(PFXFILE),-f $(PFXFILE)) \
$(if $(PFXPASSWORD),-p $(PFXPASSWORD)) \
$(if $(TIMESTAMPURL),-t $(TIMESTAMPURL)) \
- $(OUTDIR)/bin/*.dll $(OUTDIR)/bin/*.exe \
+ $(INSTDIR)/URE/bin/*.dll \
+ $(INSTDIR)/URE/bin/*.exe \
+ $(INSTDIR)/program/*.dll \
+ $(INSTDIR)/program/*.exe \
+ $(INSTDIR)/program/shlxthdl/*.dll \
+ $(INSTDIR)/sdk/cli/*.dll \
+ $(INSTDIR)/sdk/bin/*.exe \
+ $(INSTDIR)/share/extensions/mysql-connector-ooo/*.dll\
&& touch $@
else
@echo "Doing nothing on non product builds ..."