From: HinTak Date: Fri, 1 Sep 2017 08:29:25 +0000 (+0100) Subject: mkbundle: add console confirmations of actions (#5457) X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mono.git;a=commitdiff_plain;h=df92047580ab71dd9c2f35961acd7a3460970d9a mkbundle: add console confirmations of actions (#5457) Almost all the other "maker.Add()" are accompanied by console messages, except these two. User might worry about why they are missing. (I did!) --- diff --git a/mcs/tools/mkbundle/mkbundle.cs b/mcs/tools/mkbundle/mkbundle.cs index 8bf46a9ebe5..8680e0bbf81 100755 --- a/mcs/tools/mkbundle/mkbundle.cs +++ b/mcs/tools/mkbundle/mkbundle.cs @@ -624,6 +624,8 @@ class MakeBundle { return false; } maker.Add (code, file); + // add a space after code (="systemconfig:" or "machineconfig:") + Console.WriteLine (code + " " + file); return true; } @@ -666,8 +668,10 @@ class MakeBundle { if (!MaybeAddFile (maker, "systemconfig:", config_file) || !MaybeAddFile (maker, "machineconfig:", machine_config_file)) return false; - if (config_dir != null) + if (config_dir != null){ maker.Add ("config_dir:", config_dir); + Console.WriteLine (" Config_dir: " + config_dir ); + } if (embedded_options != null) maker.AddString ("options:", embedded_options); if (environment.Count > 0){