]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
change verbose messages
authorJim Meyering <jim@meyering.net>
Mon, 6 Oct 1997 13:30:14 +0000 (13:30 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 6 Oct 1997 13:30:14 +0000 (13:30 +0000)
src/install.c

index 59d32e8209aca04a9272d630dcb2603210258162..11144996648a97bdcdda9c2f5dfab5e84ba9850a 100644 (file)
@@ -302,7 +302,7 @@ main (int argc, char **argv)
        {
          errors |=
            make_path (argv[optind], mode, mode, owner_id, group_id, 0,
-                      (verbose ? "%s" : NULL));
+                      (verbose ? "creating directory `%s'" : NULL));
        }
     }
   else
@@ -445,7 +445,7 @@ copy_file (const char *from, const char *to, int *to_created)
 
   /* Now it's the time to give some feedback if requested.  */
   if (verbose)
-    printf ("%s -> %s\n", from, to);
+    printf ("copying `%s' to `%s'\n", from, to);
 
   fromfd = open (from, O_RDONLY, 0);
   if (fromfd == -1)