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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Stedfast <jeff@xamarin.com>2014-10-29 19:54:50 +0300
committerJeffrey Stedfast <jeff@xamarin.com>2014-10-29 19:54:50 +0300
commitc4b3599fc98d7632fca8fa7bca9556780805f6b5 (patch)
treecb1ed58fd6cd34374df55e4cff479d2b44dc5985 /main/build
parentafaaf2f5a87e849fcd79b61f162b01e7e48c74b7 (diff)
[MacOSX] push the MacOS dir into the PATH, not the Resources dir.
Diffstat (limited to 'main/build')
-rw-r--r--main/build/MacOSX/monostub.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/build/MacOSX/monostub.m b/main/build/MacOSX/monostub.m
index 131ebe222c..c1e2698674 100644
--- a/main/build/MacOSX/monostub.m
+++ b/main/build/MacOSX/monostub.m
@@ -297,7 +297,7 @@ update_environment (const char *resourcesDir, const char *app)
push_env ("MONO_GAC_PREFIX", resourcesDir);
if ((value = str_append (resourcesDir, "/../MacOS"))) {
- push_env ("PATH", resourcesDir);
+ push_env ("PATH", value);
free (value);
}