summaryrefslogtreecommitdiffstats
path: root/solenv
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-14 18:39:27 +0200
committerMichael Stahl <mstahl@redhat.com>2013-04-15 15:26:31 +0200
commit436c7a1f58d2d29bcbfd7ff9fc9d7bee8e8df0e5 (patch)
tree6a80e2fb88d8720eb7d4a4b26e4ead6362dda8b1 /solenv
parentredland: fix an assertion in MSVC _DEBUG build (diff)
downloadcore-436c7a1f58d2d29bcbfd7ff9fc9d7bee8e8df0e5.tar.gz
core-436c7a1f58d2d29bcbfd7ff9fc9d7bee8e8df0e5.zip
on WNT the gb_Helper_set_ld_path must contain backslashes
... or at least with forward slashes cppunittester doesn't run at all in an MSVC 2008 _DEBUG build. Change-Id: I889ff0375067877d42f11fad9773c476e9e5c52c
Diffstat (limited to 'solenv')
-rw-r--r--solenv/gbuild/platform/com_MSC_defs.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/solenv/gbuild/platform/com_MSC_defs.mk b/solenv/gbuild/platform/com_MSC_defs.mk
index 153b2fb0f06d..18e1f0a375bf 100644
--- a/solenv/gbuild/platform/com_MSC_defs.mk
+++ b/solenv/gbuild/platform/com_MSC_defs.mk
@@ -291,6 +291,7 @@ gb_LTOFLAGS := $(if $(filter TRUE,$(ENABLE_LTO)),-GL)
gb_Helper_OUTDIRLIBDIR := $(OUTDIR)/bin
gb_Helper_OUTDIR_FOR_BUILDLIBDIR := $(OUTDIR_FOR_BUILD)/bin
-gb_Helper_set_ld_path := PATH="$${PATH}:$(shell cygpath -u $(OUTDIR)/bin)"
+# need windows path with backslashes here
+gb_Helper_set_ld_path := PATH="$(shell cygpath -w $(OUTDIR)/bin)"
# vim: set noet sw=4: