summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-16 14:11:39 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-16 14:13:48 +0200
commite71a61bc09a15cdcec872c2b281c9884401cfb7f (patch)
treee8e933fa71bfbaed8d258e4214229d770150f392
parent1c27bb5237ed6067bba70d7ffe63ed9967098b19 (diff)
gbuild: More crude hacking to fix over-evalutation
Change-Id: I36d7b0c40ac60c6cf9f0968530774e4b2b03b829
-rw-r--r--filter/Configuration_filter.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/Configuration_filter.mk b/filter/Configuration_filter.mk
index d75d81eb1ecb..fcc989b7c6d8 100644
--- a/filter/Configuration_filter.mk
+++ b/filter/Configuration_filter.mk
@@ -210,7 +210,7 @@ $$(call filter_XcuResTarget_get_target,$(1)) : \
$$(call gb_Output_announce,$(1),$(true),XCU,1)
$$(call gb_Helper_abbreviate_dirs,\
mkdir -p $$(dir $$@) && \
- $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --stringparam lang $(1) \
+ $(subst $$,$$$$,$(call gb_ExternalExecutable_get_command,xsltproc)) --nonet --stringparam lang $(1) \
$(filter_XSLT_langfilter) \
$(filter_XcuFilterUiTarget) > $$@)
endef