aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-08-15 19:56:24 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-08-15 19:56:24 +0000
commitc80191c1d9bb0abcd25876cbccc4c1cc26a2544d (patch)
tree665660c66472743931a3caa246d675f6dd52e2c5
parent11152e30e3d8091a76adf2bfe59754d93becf724 (diff)
downloadbusybox-w32-c80191c1d9bb0abcd25876cbccc4c1cc26a2544d.tar.gz
busybox-w32-c80191c1d9bb0abcd25876cbccc4c1cc26a2544d.tar.bz2
busybox-w32-c80191c1d9bb0abcd25876cbccc4c1cc26a2544d.zip
install: fix long option not taking params (bug 4584)
-rw-r--r--coreutils/install.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/install.c b/coreutils/install.c
index c7ddbb214..e99f1a3bd 100644
--- a/coreutils/install.c
+++ b/coreutils/install.c
@@ -17,9 +17,9 @@ static const char install_longopts[] ALIGN1 =
17 "directory\0" No_argument "d" 17 "directory\0" No_argument "d"
18 "preserve-timestamps\0" No_argument "p" 18 "preserve-timestamps\0" No_argument "p"
19 "strip\0" No_argument "s" 19 "strip\0" No_argument "s"
20 "group\0" No_argument "g" 20 "group\0" Required_argument "g"
21 "mode\0" No_argument "m" 21 "mode\0" Required_argument "m"
22 "owner\0" No_argument "o" 22 "owner\0" Required_argument "o"
23/* autofs build insists of using -b --suffix=.orig */ 23/* autofs build insists of using -b --suffix=.orig */
24/* TODO? (short option for --suffix is -S) */ 24/* TODO? (short option for --suffix is -S) */
25#if ENABLE_SELINUX 25#if ENABLE_SELINUX