summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-11-07 13:25:37 +0100
committerMichael Stahl <mstahl@redhat.com>2012-11-07 13:31:40 +0100
commit949e06a801aa8b3939d621a450bf2b62c97fca16 (patch)
treee5f2e1123966f8d538003b449c88759206247244
parent595771d00dd7993ad34f38bcb6dfee880e75dffd (diff)
gbuild: fix "missing separator" errors with --enable-crashdump
Add missing backslash in com_MSC_class.mk. Thanks to Julien Nabet for finding this problem. (regression from 85b6a93cf41fb05e726027e34fcd805330e20414) Change-Id: Iaae670c58e42bc22691b141495598276fa23bf02
-rw-r--r--solenv/gbuild/platform/com_MSC_class.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/platform/com_MSC_class.mk b/solenv/gbuild/platform/com_MSC_class.mk
index f94d159c45e1..d0b3cfc78817 100644
--- a/solenv/gbuild/platform/com_MSC_class.mk
+++ b/solenv/gbuild/platform/com_MSC_class.mk
@@ -239,7 +239,7 @@ $(if $(filter $(gb_MERGEDLIBS),$(1)),,\
$(call gb_Library_add_auxtarget,$(1),$(OUTDIR)/bin/$(notdir $(3))))
ifneq ($(ENABLE_CRASHDUMP),)
-$(call gb_Library_add_auxtargets,$(1),
+$(call gb_Library_add_auxtargets,$(1),\
$(OUTDIR)/bin/$(notdir $(patsubst %.dll,%.pdb,$(3))) \
$(OUTDIR)/bin/$(notdir $(patsubst %.dll,%.ilk,$(3))) \
)