diff options
author | Jim Meyering <jim@meyering.net> | 1997-10-06 13:30:14 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-10-06 13:30:14 +0000 |
commit | e5549867e260f95cfe94af0bd9c4a656670f3f69 (patch) | |
tree | 3339182b7a63d6e6347b58cf0b1b498f1f6ab6e9 /src | |
parent | 2e1d300fe5bc60a160b05bed2e49849e4579e8ba (diff) | |
download | coreutils-e5549867e260f95cfe94af0bd9c4a656670f3f69.tar.xz |
change verbose messages
Diffstat (limited to 'src')
-rw-r--r-- | src/install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install.c b/src/install.c index 59d32e820..111449966 100644 --- a/src/install.c +++ b/src/install.c @@ -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) |