summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-10-06 13:30:14 +0000
committerJim Meyering <jim@meyering.net>1997-10-06 13:30:14 +0000
commite5549867e260f95cfe94af0bd9c4a656670f3f69 (patch)
tree3339182b7a63d6e6347b58cf0b1b498f1f6ab6e9 /src/install.c
parent2e1d300fe5bc60a160b05bed2e49849e4579e8ba (diff)
downloadcoreutils-e5549867e260f95cfe94af0bd9c4a656670f3f69.tar.xz
change verbose messages
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c4
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)