Skip to content

Commit

Permalink
2002-08-23 Martin Baulig <martin@gnome.org>
Browse files Browse the repository at this point in the history
	* driver.cs: csc also allows the arguments to /define being
	separated by commas, not only by semicolons.

svn path=/trunk/mcs/; revision=6941
  • Loading branch information
Martin Baulig committed Aug 23, 2002
1 parent eff68aa commit 9079686
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions mcs/mcs/ChangeLog
@@ -1,3 +1,8 @@
2002-08-23 Martin Baulig <martin@gnome.org>

* driver.cs: csc also allows the arguments to /define being
separated by commas, not only by semicolons.

2002-08-23 Martin Baulig <martin@gnome.org>

* interface.cs (Interface.GetMembers): Added static check for events.
Expand Down
2 changes: 1 addition & 1 deletion mcs/mcs/driver.cs
Expand Up @@ -851,7 +851,7 @@ static bool CSCParseOption (string option, ref string [] args, ref int i)
Environment.Exit (1);
}

defs = value.Split (new Char [] {';'});
defs = value.Split (new Char [] {';', ','});
foreach (string d in defs){
defines.Add (d);
}
Expand Down

0 comments on commit 9079686

Please sign in to comment.