Fixing another confusing typo
authorHinTak <htl10@users.sourceforge.net>
Sun, 27 Aug 2017 05:00:53 +0000 (13:00 +0800)
committerMarek Safar <marek.safar@gmail.com>
Fri, 1 Sep 2017 08:27:17 +0000 (10:27 +0200)
The file being added is the config of the last assembly read, not the runtime name.

mcs/tools/mkbundle/mkbundle.cs

index 9a80f57f7feff53722a085f060c53b58451c26d4..8bf46a9ebe5139f6447ba5262a4ca1a459b07ad0 100755 (executable)
@@ -659,7 +659,7 @@ class MakeBundle {
                        Console.WriteLine ("     Assembly: " + fname);
                        if (File.Exists (fname + ".config")){
                                maker.Add ("config:" + aname, fname + ".config");
-                               Console.WriteLine ("       Config: " + runtime);
+                               Console.WriteLine ("       Config: " + fname + ".config");
                        }
                }