Author: marek
Date: 2005-06-13 10:50:48 -0400 (Mon, 13 Jun 2005)
New Revision: 45877

Modified:
   trunk/mcs/gmcs/ChangeLog
   trunk/mcs/gmcs/rootcontext.cs
Log:
merged from mcs

Modified: trunk/mcs/gmcs/ChangeLog
===================================================================
--- trunk/mcs/gmcs/ChangeLog    2005-06-13 14:44:51 UTC (rev 45876)
+++ trunk/mcs/gmcs/ChangeLog    2005-06-13 14:50:48 UTC (rev 45877)
@@ -1,3 +1,7 @@
+2005-06-06  Marek Safar  <[EMAIL PROTECTED]>
+
+       * rootcontext.cs: Reset TargetExt as well.
+       
 2005-06-09  Martin Baulig  <[EMAIL PROTECTED]>
 
        * delegate.cs (Delegate.VerifyMethod): Added

Modified: trunk/mcs/gmcs/rootcontext.cs
===================================================================
--- trunk/mcs/gmcs/rootcontext.cs       2005-06-13 14:44:51 UTC (rev 45876)
+++ trunk/mcs/gmcs/rootcontext.cs       2005-06-13 14:50:48 UTC (rev 45877)
@@ -66,7 +66,7 @@
                public static int WarningLevel;
 
                public static Target Target;
-               public static string TargetExt = ".exe";
+               public static string TargetExt;
 
                public static bool VerifyClsCompliance = true;
 
@@ -114,6 +114,7 @@
                        StrongNameDelaySign = false;
                        MainClass = null;
                        Target = Target.Exe;
+                       TargetExt = ".exe";
                        Version = LanguageVersion.Default;
                        Documentation = null;
                        impl_details_class = null;

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

Reply via email to