Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2005-06-13 18:50:48 +0400
committerMarek Safar <marek.safar@gmail.com>2005-06-13 18:50:48 +0400
commit635d97935300a84d3ce37c9785719a6063ff9874 (patch)
treea4aeb5eabb5f0cac6f219380d3918aa60745958f /mcs
parentae13b7f17e288c4012e73fe1c5c3573e32013715 (diff)
merged from mcs
svn path=/trunk/mcs/; revision=45877
Diffstat (limited to 'mcs')
-rw-r--r--mcs/gmcs/ChangeLog4
-rw-r--r--mcs/gmcs/rootcontext.cs3
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/gmcs/ChangeLog b/mcs/gmcs/ChangeLog
index d35e0719e91..84b65ffe10c 100644
--- a/mcs/gmcs/ChangeLog
+++ b/mcs/gmcs/ChangeLog
@@ -1,3 +1,7 @@
+2005-06-06 Marek Safar <marek.safar@seznam.cz>
+
+ * rootcontext.cs: Reset TargetExt as well.
+
2005-06-09 Martin Baulig <martin@ximian.com>
* delegate.cs (Delegate.VerifyMethod): Added
diff --git a/mcs/gmcs/rootcontext.cs b/mcs/gmcs/rootcontext.cs
index d851e5c4f4a..ee23d7713bc 100644
--- a/mcs/gmcs/rootcontext.cs
+++ b/mcs/gmcs/rootcontext.cs
@@ -66,7 +66,7 @@ namespace Mono.CSharp {
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 @@ namespace Mono.CSharp {
StrongNameDelaySign = false;
MainClass = null;
Target = Target.Exe;
+ TargetExt = ".exe";
Version = LanguageVersion.Default;
Documentation = null;
impl_details_class = null;