[Monodevelop-patches-list] r1261 - trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Fri Mar 26 17:32:45 EST 2004


Author: jluke
Date: 2004-03-26 17:32:45 -0500 (Fri, 26 Mar 2004)
New Revision: 1261

Modified:
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingExecutionManager.cs
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
Log:
	* CSharpBindingExecutionManager.cs: use xterm instead of
	gnome-terminal, fixes bug #53689 and also works when people
	don't have gnome-terminal installed


Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingExecutionManager.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingExecutionManager.cs	2004-03-26 22:19:47 UTC (rev 1260)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingExecutionManager.cs	2004-03-26 22:32:45 UTC (rev 1261)
@@ -80,9 +80,9 @@
 				}
 				
 				if (parameters.CompileTarget != CompileTarget.WinExe && parameters.PauseConsoleOutput) {
-					psi = new ProcessStartInfo("gnome-terminal",
+					psi = new ProcessStartInfo("xterm",
 						string.Format (
-						@"-x bash -c ""{0} '{1}{2}' {3} ; echo; read -p 'press any key to continue...' -n1""",
+						@"-e ""{0} '{1}{2}' {3} ; echo; read -p 'press any key to continue...' -n1""",
 						runtimeStarter, directory, exe, args));
 					psi.UseShellExecute = false;
 				} else {

Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2004-03-26 22:19:47 UTC (rev 1260)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2004-03-26 22:32:45 UTC (rev 1261)
@@ -1,3 +1,9 @@
+2003-03-26  John Luke  <jluke at cfl.rr.com>
+
+	* CSharpBindingExecutionManager.cs: use xterm instead of
+	gnome-terminal, fixes bug #53689 and also works when people
+	don't have gnome-terminal installed
+
 2004-03-22  Todd Berman  <tberman at sevenl.net>
 
 	* Project/CSharpCompilerParameters.cs: reverse WinExe and Library in




More information about the Monodevelop-patches-list mailing list