summaryrefslogtreecommitdiff
path: root/extensions/CustomTarget_so_activex_idl.mk
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-05-09 23:15:42 +0200
committerMichael Stahl <mstahl@redhat.com>2012-05-10 10:47:44 +0200
commita9550f63cd7a7e064901b2c997375ed384781eea (patch)
treeb35a7bf6077c5b40390cbde11dffe30ef90d57c9 /extensions/CustomTarget_so_activex_idl.mk
parentce1ac0851fe2e975f3fb47178730b914608610cf (diff)
normalize variable names in gbuild user makefiles
Variables should have module name as prefix to prevent collisions.
Diffstat (limited to 'extensions/CustomTarget_so_activex_idl.mk')
-rw-r--r--extensions/CustomTarget_so_activex_idl.mk17
1 files changed, 9 insertions, 8 deletions
diff --git a/extensions/CustomTarget_so_activex_idl.mk b/extensions/CustomTarget_so_activex_idl.mk
index ac567038b690..bc5c02ffd5a1 100644
--- a/extensions/CustomTarget_so_activex_idl.mk
+++ b/extensions/CustomTarget_so_activex_idl.mk
@@ -27,24 +27,25 @@
$(eval $(call gb_CustomTarget_CustomTarget,extensions/source/activex/idl))
-EXAI := $(call gb_CustomTarget_get_workdir,extensions/source/activex/idl)
+extensions_AXIDLDIR := $(call gb_CustomTarget_get_workdir,extensions/source/activex/idl)
$(call gb_CustomTarget_get_target,extensions/source/activex/idl) : \
- $(EXAI)/so_activex.tlb
+ $(extensions_AXIDLDIR)/so_activex.tlb
# XXX: I presume that the "$(COM)"=="GCC" case in the original
# extensions/source/activex/msidl/makefile.mk was for the
# use-mingw-on-windows case and thus is not interesting for us.
-$(EXAI)/so_activex.tlb : \
- $(SRCDIR)/extensions/source/activex/so_activex.idl | $(EXAI)/.dir
+$(extensions_AXIDLDIR)/so_activex.tlb : \
+ $(SRCDIR)/extensions/source/activex/so_activex.idl \
+ | $(extensions_AXIDLDIR)/.dir
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),IDL,1)
$(call gb_Helper_abbreviate_dirs, \
midl.exe \
-tlb $@ \
- -h $(EXAI)/so_activex.h \
- -iid $(EXAI)/so_activex_i.c \
- -dlldata $(EXAI)/so_activex_dll.c \
- -proxy $(EXAI)/so_activex_p.c \
+ -h $(extensions_AXIDLDIR)/so_activex.h \
+ -iid $(extensions_AXIDLDIR)/so_activex_i.c \
+ -dlldata $(extensions_AXIDLDIR)/so_activex_dll.c \
+ -proxy $(extensions_AXIDLDIR)/so_activex_p.c \
-Oicf \
$(INCLUDE) \
$<)