[Mono-bugs] [Bug 61991][Maj] Changed - [HEAD only] PrivatebinPath broken recently in HEAD

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 29 Aug 2004 12:39:44 -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=61991

--- shadow/61991	2004-08-16 14:14:43.000000000 -0400
+++ shadow/61991.tmp.13319	2004-08-29 12:39:44.000000000 -0400
@@ -92,6 +92,33 @@
 ------- Additional Comments From gonzalo@ximian.com  2004-08-12 13:19 -------
 Some recent change in mono HEAD made this bug alive again.
 
 ------- Additional Comments From gert.driesen@pandora.be  2004-08-12 13:31 -------
 If I'm not mistaken then privatebinpath in general is broken, not 
 just paths containing dots
+
+------- Additional Comments From gert.driesen@pandora.be  2004-08-29 12:39 -------
+A much simpler repro on Mono HEAD is :
+
+using System;
+
+public class EntryPoint {
+  public static void Main() {
+    AppDomain.CurrentDomain.AppendPrivatePath("whatever");
+    Console.WriteLine("PRIVATE BIN PATH: " 
+	+ AppDomain.CurrentDomain.SetupInformation.PrivateBinPath);
+  }
+}
+
+On Mono HEAD, you'll get the following output :
+
+PRIVATE BIN PATH:
+
+while on MS.NET and Mono 1.0.x, you'll get :
+
+PRIVATE BIN PATH: whatever
+
+I'm just guessing here, but it might have to do with the fact that 
+changes to the private bin path are only processed when the 
+application base directory is set, and perhaps something has changed 
+here post 1.0.x.
+