Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2015-12-20 18:20:31 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2015-12-20 18:20:31 +0300
commit412d06b373dcd40b83e4c3ae1e4dc81266453f94 (patch)
treed38a756b5c058d34107a5f13a65e424782c94dfb /mcs
parentcb6ccf37a484b3d3610f462c0deb4ad779001bd0 (diff)
[symbolicate] Make sure MONO_PATH is quoted
Without it we saw a " ./../../class/lib/net_4_x: Is a directory" error in the cygwin build.
Diffstat (limited to 'mcs')
-rw-r--r--mcs/tools/mono-symbolicate/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tools/mono-symbolicate/Makefile b/mcs/tools/mono-symbolicate/Makefile
index c9c10608bff..a4295fbcbc6 100644
--- a/mcs/tools/mono-symbolicate/Makefile
+++ b/mcs/tools/mono-symbolicate/Makefile
@@ -13,7 +13,7 @@ include ../../build/executable.make
LIB_PATH = $(topdir)/class/lib/$(PROFILE)
-MONO = MONO_PATH=$(LIB_PATH)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH $(RUNTIME) -O=-inline
+MONO = MONO_PATH="$(LIB_PATH)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) -O=-inline
OUT_DIR = Test/out
TEST_CS = Test/StackTraceDumper.cs