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:
authorLluis Sanchez <lluis@novell.com>2010-04-30 13:29:16 +0400
committerLluis Sanchez <lluis@novell.com>2010-04-30 13:29:16 +0400
commit0101a58e766fada0452de9838e82fd15c1ccb7b2 (patch)
tree10a735b262e5c45cd6f20023ead13f126fc3e577 /main/src/addins/WindowsPlatform
parented7db3c08b44d5d3128cdcf1fc37374e95fe4ca8 (diff)
* WindowsPlatform.cs: Fix build.
svn path=/trunk/monodevelop/; revision=156501
Diffstat (limited to 'main/src/addins/WindowsPlatform')
-rw-r--r--main/src/addins/WindowsPlatform/ChangeLog4
-rw-r--r--main/src/addins/WindowsPlatform/WindowsPlatform.cs2
2 files changed, 5 insertions, 1 deletions
diff --git a/main/src/addins/WindowsPlatform/ChangeLog b/main/src/addins/WindowsPlatform/ChangeLog
index cb738fc446..0d9ea342c9 100644
--- a/main/src/addins/WindowsPlatform/ChangeLog
+++ b/main/src/addins/WindowsPlatform/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-30 Lluis Sanchez Gual <lluis@novell.com>
+
+ * WindowsPlatform.cs: Fix build.
+
2010-04-28 Michael Hutchinson <mhutchinson@novell.com>
* WindowsPlatform.cs: Track StartConsoleProcess API.
diff --git a/main/src/addins/WindowsPlatform/WindowsPlatform.cs b/main/src/addins/WindowsPlatform/WindowsPlatform.cs
index 9a81b1b5b1..b3af4552ff 100644
--- a/main/src/addins/WindowsPlatform/WindowsPlatform.cs
+++ b/main/src/addins/WindowsPlatform/WindowsPlatform.cs
@@ -118,7 +118,7 @@ namespace MonoDevelop.Platform
IDictionary<string, string> environmentVariables,
string title, bool pauseWhenFinished)
{
- string args = "/C \"title " + title + " && \"" + psi.FileName + "\" " + psi.Arguments;
+ string args = "/C \"title " + title + " && \"" + command + "\" " + arguments;
if (pauseWhenFinished)
args += " && pause\"";
else