summaryrefslogtreecommitdiffstats
path: root/extensions/WinResTarget_activex.mk
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-02-28 23:09:18 +0100
committerLuboš Luňák <l.lunak@suse.cz>2013-02-28 23:11:24 +0100
commit2a601c5665602d0e0f349145a64d9858a93433b3 (patch)
treeac14c8d1e9e17811929ece9691cb7ec62bd88b37 /extensions/WinResTarget_activex.mk
parentextensions: m_nApplRegHandle unused now (diff)
downloadcore-2a601c5665602d0e0f349145a64d9858a93433b3.tar.gz
core-2a601c5665602d0e0f349145a64d9858a93433b3.zip
try harder when quoting for rc
Apparently the TYPELIB has problems with paths if they contain some "special" characters like "-", unless it is quoted. It can't seem to be able to concatenate quoted strings properly either. So build up the whole filename in the makefile and quote/escape extensively for both shell and rc.
Diffstat (limited to 'extensions/WinResTarget_activex.mk')
-rw-r--r--extensions/WinResTarget_activex.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/WinResTarget_activex.mk b/extensions/WinResTarget_activex.mk
index 41db1dba5a8c..aab7a6c88b67 100644
--- a/extensions/WinResTarget_activex.mk
+++ b/extensions/WinResTarget_activex.mk
@@ -44,7 +44,7 @@ $(eval $(call gb_WinResTarget_set_rcfile,activex_res,extensions/source/activex/s
$(eval $(call gb_WinResTarget_add_defs,activex_res,\
$$(DEFS) \
- -DSO_ACTIVEX_TLB_DIR=$(subst /,\\,$(WORKDIR)/CustomTarget/extensions/source/activex/idl) \
+ -DSO_ACTIVEX_TLB=\"$(subst /,\\\\,$(WORKDIR)/CustomTarget/extensions/source/activex/idl/so_activex.tlb\") \
))
# vim:set noet sw=4 ts=4: