Author: gonzalo
Date: 2005-04-20 01:59:32 -0400 (Wed, 20 Apr 2005)
New Revision: 43312

Modified:
   trunk/mcs/class/Cscompmgd/Microsoft.CSharp/ChangeLog
   trunk/mcs/class/Cscompmgd/Microsoft.CSharp/Compiler.cs
Log:
2005-04-20 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>

        * Compiler.cs: redirect standard error. Patch by Toby Miller that fixes
        bug #74067.



Modified: trunk/mcs/class/Cscompmgd/Microsoft.CSharp/ChangeLog
===================================================================
--- trunk/mcs/class/Cscompmgd/Microsoft.CSharp/ChangeLog        2005-04-20 
05:48:20 UTC (rev 43311)
+++ trunk/mcs/class/Cscompmgd/Microsoft.CSharp/ChangeLog        2005-04-20 
05:59:32 UTC (rev 43312)
@@ -1,3 +1,8 @@
+2005-04-20 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
+
+       * Compiler.cs: redirect standard error. Patch by Toby Miller that fixes
+       bug #74067.
+
 2004-12-14  Jackson Harper  <[EMAIL PROTECTED]>
 
        * Compiler.cs: mcs writes to stderr now. Also read stdout so we do

Modified: trunk/mcs/class/Cscompmgd/Microsoft.CSharp/Compiler.cs
===================================================================
--- trunk/mcs/class/Cscompmgd/Microsoft.CSharp/Compiler.cs      2005-04-20 
05:48:20 UTC (rev 43311)
+++ trunk/mcs/class/Cscompmgd/Microsoft.CSharp/Compiler.cs      2005-04-20 
05:59:32 UTC (rev 43312)
@@ -100,6 +100,7 @@
                        mcs.StartInfo.CreateNoWindow = true;
                        mcs.StartInfo.UseShellExecute = false;
                        mcs.StartInfo.RedirectStandardOutput = true;
+                       mcs.StartInfo.RedirectStandardError = true;
 
                        try {
                                mcs.Start ();

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to