# HG changeset patch # User Rafael Laboissiere # Date 1657836479 10800 # Node ID 674e7bf1d630ed31fa2ffd7377edaf9645b84ed1 # Parent 8245e773bb5be9a5567449115b38f9cf48bdc151 pkg: Fix formatting of copyfile message (bug #62769). * scripts/pkg/private/install.m (copy_built_files): Add a space character between source and destination in the verbose message of the copyfile command. diff -r 8245e773bb5b -r 674e7bf1d630 scripts/pkg/private/install.m --- a/scripts/pkg/private/install.m Mon Jul 11 23:08:51 2022 +0200 +++ b/scripts/pkg/private/install.m Thu Jul 14 19:07:59 2022 -0300 @@ -458,7 +458,7 @@ if (verbose) printf ("copyfile"); printf (" %s", archindependent{:}); - printf ("%s\n", instdir); + printf (" %s\n", instdir); endif [status, output] = copyfile (archindependent, instdir); if (status != 1)