From 2852d49c3bbd22f303813b391f333be70ef1e4b9 Mon Sep 17 00:00:00 2001 From: HinTak Date: Sun, 27 Aug 2017 13:00:53 +0800 Subject: [PATCH] Fixing another confusing typo The file being added is the config of the last assembly read, not the runtime name. --- mcs/tools/mkbundle/mkbundle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcs/tools/mkbundle/mkbundle.cs b/mcs/tools/mkbundle/mkbundle.cs index 9a80f57f7fe..8bf46a9ebe5 100755 --- a/mcs/tools/mkbundle/mkbundle.cs +++ b/mcs/tools/mkbundle/mkbundle.cs @@ -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"); } } -- 2.25.1