diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-15 22:05:07 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-15 22:05:07 +0100 |
commit | a40f0624db4c9490d46f116c4c4635dfa68e070c (patch) | |
tree | 6495c54fab2be22802c6befc9d5c8ea01807a60c /coreutils/install.c | |
parent | 662078f9fd41efe422d7abc0aea1395c27c61ddd (diff) | |
download | busybox-w32-a40f0624db4c9490d46f116c4c4635dfa68e070c.tar.gz busybox-w32-a40f0624db4c9490d46f116c4c4635dfa68e070c.tar.bz2 busybox-w32-a40f0624db4c9490d46f116c4c4635dfa68e070c.zip |
cp: fix -H handling
function old new delta
copy_file 1495 1518 +23
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/install.c')
-rw-r--r-- | coreutils/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/install.c b/coreutils/install.c index 2e604bec7..e9682990d 100644 --- a/coreutils/install.c +++ b/coreutils/install.c | |||
@@ -101,7 +101,7 @@ 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" IF_SELINUX(":Z--\xff:\xff--Z"); | 104 | opt_complementary = "s--d:d--s" IF_FEATURE_INSTALL_LONG_OPTIONS(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") */ |