[Mono-bugs] [Bug 34486][Wis] New - the -o option of mcs does not work as expected
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
22 Nov 2002 16:45:16 -0000
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by fredi@e-salute.it.
http://bugzilla.ximian.com/show_bug.cgi?id=34486
--- shadow/34486 Fri Nov 22 11:45:16 2002
+++ shadow/34486.tmp.31638 Fri Nov 22 11:45:16 2002
@@ -0,0 +1,51 @@
+Bug#: 34486
+Product: Mono/MCS
+Version: unspecified
+OS: GNU/Linux [Other]
+OS Details: Mandrake 9.0, mono in rpm format downloaded from www.go-mono.org
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: fredi@e-salute.it
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: the -o option of mcs does not work as expected
+
+[This is just a cosmetic thing]
+
+Description of Problem:
+the -o option of mcs adds an .exe extension to the filename
+
+Steps to reproduce the problem:
+Just compile with the "-o filename" option
+
+Actual Results:
+
+[fredi@crusher bug]$ ls
+hello.cs
+[fredi@crusher bug]$ mcs hello.cs -o hello
+Compilation succeeded
+[fredi@crusher bug]$ ls
+hello.cs hello.exe
+ ^^^^^^^
+[fredi@crusher bug]$
+
+
+Expected Results:
+[fredi@crusher bug]$ ls
+hello.cs
+[fredi@crusher bug]$ mcs hello.cs -o hello
+Compilation succeeded
+[fredi@crusher bug]$ ls
+hello.cs hello
+ ^^^
+[fredi@crusher bug]$
+
+
+How often does this happen?
+Everytime