From: Jim Meyering Date: Sun, 20 Sep 1998 02:17:26 +0000 (+0000) Subject: (install_file_to_path): Copy the file after creating any leading directories. X-Git-Tag: FILEUTILS-3_16z~30 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef679d9871e1c8ba7039e02875298a1bb85c183e;p=platform%2Fupstream%2Fcoreutils.git (install_file_to_path): Copy the file after creating any leading directories. (main) [case 'v']: Set `x.verbose' to 1, not 0. --- diff --git a/src/install.c b/src/install.c index 81065d5..fa57931 100644 --- a/src/install.c +++ b/src/install.c @@ -288,7 +288,7 @@ main (int argc, char **argv) mkdir_and_install = 1; break; case 'v': - x.verbose = 0; + x.verbose = 1; break; case 'g': group_name = optarg; @@ -425,6 +425,9 @@ install_file_to_path (const char *from, const char *to, */ fail = make_path (dest_dir, mode, mode, owner_id, group_id, 0, (x->verbose ? _("creating directory `%s'") : NULL)); + + if (fail == 0) + fail = install_file_in_dir (from, dest_dir, x); } else {