[Monodevelop-patches-list] r1806 - trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Tue Jun 22 19:12:37 EDT 2004
Author: pawel
Date: 2004-06-22 19:12:37 -0400 (Tue, 22 Jun 2004)
New Revision: 1806
Modified:
trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/ChangeLog
trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingCompilerServices.cs
Log:
ProcessStartInfo fix.
Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/ChangeLog 2004-06-22 06:49:52 UTC (rev 1805)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/ChangeLog 2004-06-22 23:12:37 UTC (rev 1806)
@@ -1,3 +1,7 @@
+2004-06-23 Pawel Rozanski <tokugawa at afn.no-ip.org>
+
+ * NemerleBindingCompilerServices.cs: one line fix for ProcessStartInfo.
+
2004-06-17 John Luke <jluke at cfl.rr.com>
* Gui/OutputPanel.cs: use MonoDevelop.Gui.Widgets.FileSelector
Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingCompilerServices.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingCompilerServices.cs 2004-06-22 06:49:52 UTC (rev 1805)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/NemerleBinding/NemerleBindingCompilerServices.cs 2004-06-22 23:12:37 UTC (rev 1806)
@@ -171,7 +171,7 @@
private ICompilerResult DoCompilation(string arguments)
{
string l;
- ProcessStartInfo si = new ProcessStartInfo("/bin/sh -c \"" + ncc + arguments + "\"");
+ ProcessStartInfo si = new ProcessStartInfo(ncc, arguments);
si.RedirectStandardOutput = true;
si.RedirectStandardError = true;
si.UseShellExecute = false;
More information about the Monodevelop-patches-list
mailing list