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
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2016-09-20 14:14:13 +0300
committerMarek Safar <marek.safar@gmail.com>2016-09-20 14:15:11 +0300
commit97ede66a073ff97c06c43d24d7dfb934bcfedbbb (patch)
treea6571e9560751801d3cb4c2a38fb37f7ffe5c448 /mcs/class/System.Web
parentdf39947352df2c8e6d544763cafed84d23a23b7a (diff)
Rewrite 67cdb99 to make more sense and don't regress
Diffstat (limited to 'mcs/class/System.Web')
-rw-r--r--mcs/class/System.Web/System.Web.Compilation/AppResourcesAssemblyBuilder.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/System.Web/System.Web.Compilation/AppResourcesAssemblyBuilder.cs b/mcs/class/System.Web/System.Web.Compilation/AppResourcesAssemblyBuilder.cs
index 064fbde4322..15c0393412b 100644
--- a/mcs/class/System.Web/System.Web.Compilation/AppResourcesAssemblyBuilder.cs
+++ b/mcs/class/System.Web/System.Web.Compilation/AppResourcesAssemblyBuilder.cs
@@ -231,10 +231,10 @@ namespace System.Web.Compilation
string SetAlPath (ProcessStartInfo info)
{
if (RuntimeHelpers.RunningOnWindows) {
- info.FileName = MonoExeLocator.MonoPath;
- return MonoExeLocator.AlPath + " ";
+ info.FileName = MonoToolsLocator.Mono;
+ return MonoToolsLocator.AssemblyLinker + " ";
} else {
- info.FileName = MonoExeLocator.AlPath;
+ info.FileName = MonoToolsLocator.AssemblyLinker;
return String.Empty;
}
}