summaryrefslogtreecommitdiff
path: root/src/copy.h
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2016-11-19 11:26:43 +0000
committerPádraig Brady <P@draigBrady.com>2016-11-19 17:05:33 +0000
commitf1799198483171c8565a4ff8fc1205d0a52fce37 (patch)
treefcd58921c28ced224cf33f7c4cb45871a385ae91 /src/copy.h
parent0c5cc8384a84ad39f7788ed1c5092bc14a0431ce (diff)
downloadcoreutils-f1799198483171c8565a4ff8fc1205d0a52fce37.tar.xz
cp: improve status message when omitting directories
* src/copy.h (cp_options): Add a new flag for install(1). * src/copy.c (copy_internal): For cp, also output remediation advice which also indicates why directories aren't copied by default. The message is unchanged for install(1). * src/cp.c (cp_option_init): Init install_mode to false. * src/mv.c (cp_option_init): Likewise. * src/install.c (cp_option_init): Init install_mode to true. * tests/install/basic-1.sh: Add a test case. * tests/cp/link-deref.sh: Adjust test case. Fixes http://bugs.gnu.org/24958
Diffstat (limited to 'src/copy.h')
-rw-r--r--src/copy.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/copy.h b/src/copy.h
index fa0c2aeae..a516002c2 100644
--- a/src/copy.h
+++ b/src/copy.h
@@ -137,6 +137,9 @@ struct cp_options
If that fails, then resort to copying. */
bool move_mode;
+ /* If true, install(1) is the caller. */
+ bool install_mode;
+
/* Whether this process has appropriate privileges to chown a file
whose owner is not the effective user ID. */
bool chown_privileges;