2005-10-26 Geoff Norton <gnorton@customerdna.com>
authorGeoff Norton <grompf@sublimeintervention.com>
Wed, 26 Oct 2005 16:10:47 +0000 (16:10 -0000)
committerGeoff Norton <grompf@sublimeintervention.com>
Wed, 26 Oct 2005 16:10:47 +0000 (16:10 -0000)
        * driver.cs: Do not match every item with a blank string.  Fixes
        #76563

svn path=/trunk/mcs/; revision=52243

mcs/tools/gacutil/ChangeLog
mcs/tools/gacutil/driver.cs

index 3b998a433a41e4f161b0261327d5b6282e754352..c44d9ab6020909c95de41c4a83f52db17471a00e 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-26  Geoff Norton  <gnorton@customerdna.com>
+
+       * driver.cs: Do not match every item with a blank string.  Fixes
+       #76563
+
 2005-09-10  Miguel de Icaza  <miguel@novell.com>
 
        * driver.cs: Only symlink if the file that we are symlking to
index d330d82b00d8a6fad43a4974f71ccd37f9a64a76..e1b14e428bc9e8fcd9382296547ea6dfd306e8b7 100644 (file)
@@ -326,6 +326,7 @@ namespace Mono.Tools {
                        Hashtable asm_info = new Hashtable ();
 
                        foreach (string item in assembly_pieces) {
+                               if (item == String.Empty) continue;
                                string[] pieces = item.Trim ().Split (new char[] { '=' }, 2);
                                if(pieces.Length == 1)
                                        asm_info ["assembly"] = pieces [0];