[symbolicate] Make sure MONO_PATH is quoted
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Sun, 20 Dec 2015 15:20:31 +0000 (16:20 +0100)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Sun, 20 Dec 2015 15:20:31 +0000 (16:20 +0100)
Without it we saw a " ./../../class/lib/net_4_x: Is a directory" error in the cygwin build.

mcs/tools/mono-symbolicate/Makefile

index c9c10608bff4d7d29abf3ffb3e7651afe2b2d4e8..a4295fbcbc62ad4254c07affec2e307bca17aeb7 100644 (file)
@@ -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