[Mono-bugs] [Bug 65484][Nor] New - mbas does not support quoted arguments in response file

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 7 Sep 2004 17:27:43 -0400 (EDT)


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 gert.driesen@pandora.be.

http://bugzilla.ximian.com/show_bug.cgi?id=65484

--- shadow/65484	2004-09-07 17:27:43.000000000 -0400
+++ shadow/65484.tmp.8818	2004-09-07 17:27:43.000000000 -0400
@@ -0,0 +1,53 @@
+Bug#: 65484
+Product: Mono: Compilers
+Version: unspecified
+OS: GNU/Linux [Other]
+OS Details: Gentoo 2.6.8 R2
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Basic
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: gert.driesen@pandora.be               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: mbas does not support quoted arguments in response file
+
+mbas does not supported quoted arguments in response files.
+
+To reproduce this issue :
+
+1. create a source file named "test.vb" containing the following code 
+fragment :
+
+Public Class Test
+  Public Shared Sub Main()
+  End Sub
+End Class
+
+2. create a response file named "response" containing the following :
+
+"/target:exe"
+"/r:System.dll"
+"test.vb"
+
+3. compile the source file using the response file :
+
+$ mbas @response
+
+I get the following errors when using mbas :
+
+--------
+MonoBASIC: THIS IS STILL ALPHA AND UNSUPPORTED SOFTWARE, USE AT YOUR OWN 
+RISK.
+--------
+error BC2001: Source file '"/r:System.dll"' could not be found!!!
+error BC2001: Source file '"/target:exe"' could not be found!!!
+error BC2001: Source file '"test.vb"' could not be found!!!
+Compilation failed: 3 Error(s), 0 warnings
+
+This works fine using vbc, but also when I specify these arguments to 
+mbas on the command line (instead of using a response file).