changeset 31150:674e7bf1d630 stable

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.
author Rafael Laboissiere <rafael@laboissiere.net>
date Thu, 14 Jul 2022 19:07:59 -0300
parents 8245e773bb5b
children b726aff748e3 07e52e612ea2
files scripts/pkg/private/install.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)