aboutsummaryrefslogtreecommitdiff
path: root/coreutils/install.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/install.c')
-rw-r--r--coreutils/install.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/install.c b/coreutils/install.c
index 2b796e2a1..24fb402af 100644
--- a/coreutils/install.c
+++ b/coreutils/install.c
@@ -101,12 +101,12 @@ int install_main(int argc, char **argv)
101#if ENABLE_FEATURE_INSTALL_LONG_OPTIONS 101#if ENABLE_FEATURE_INSTALL_LONG_OPTIONS
102 applet_long_options = install_longopts; 102 applet_long_options = install_longopts;
103#endif 103#endif
104 opt_complementary = "s--d:d--s" USE_SELINUX(":Z--\xff:\xff--Z"); 104 opt_complementary = "s--d:d--s" IF_SELINUX(":Z--\xff:\xff--Z");
105 /* -c exists for backwards compatibility, it's needed */ 105 /* -c exists for backwards compatibility, it's needed */
106 /* -v is ignored ("print name of each created directory") */ 106 /* -v is ignored ("print name of each created directory") */
107 /* -b is ignored ("make a backup of each existing destination file") */ 107 /* -b is ignored ("make a backup of each existing destination file") */
108 opts = getopt32(argv, "cvb" "Ddpsg:m:o:" USE_SELINUX("Z:"), 108 opts = getopt32(argv, "cvb" "Ddpsg:m:o:" IF_SELINUX("Z:"),
109 &gid_str, &mode_str, &uid_str USE_SELINUX(, &scontext)); 109 &gid_str, &mode_str, &uid_str IF_SELINUX(, &scontext));
110 argc -= optind; 110 argc -= optind;
111 argv += optind; 111 argv += optind;
112 112