diff options
author | Jim Meyering <jim@meyering.net> | 2001-09-28 19:55:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-09-28 19:55:06 +0000 |
commit | eca1e2d890d8c13c24efcfa9b053fc4318211973 (patch) | |
tree | b53fca0f741ef485bcc04d199ae25ea0ea1c5f86 | |
parent | 6027bfa668248920dc2c90f0529283cb73e04c92 (diff) | |
download | coreutils-eca1e2d890d8c13c24efcfa9b053fc4318211973.tar.xz |
(main): Call dest_info_init if necessary.
-rw-r--r-- | src/install.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/install.c b/src/install.c index b0649d1df..7bdd1abb2 100644 --- a/src/install.c +++ b/src/install.c @@ -339,6 +339,8 @@ is not a directory"), quote (dest)); usage (1); } + + dest_info_init (); for (i = 0; i < n_files - 1; i++) { errors |= install_file_in_dir (file[i], dest, &x); |