aboutsummaryrefslogtreecommitdiff
path: root/coreutils/install.c
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-10-29 11:10:02 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-10-29 11:10:02 +0000
commitfd5a6c00683c57fdaabc92cec13caf98c30d38d9 (patch)
tree6017f31d8e7e268ef29263ea0ea7707fa4ce14ca /coreutils/install.c
parent40788e2504cf0a49a4fba06c9eaf846dfc7a09f8 (diff)
downloadbusybox-w32-fd5a6c00683c57fdaabc92cec13caf98c30d38d9.tar.gz
busybox-w32-fd5a6c00683c57fdaabc92cec13caf98c30d38d9.tar.bz2
busybox-w32-fd5a6c00683c57fdaabc92cec13caf98c30d38d9.zip
Accept the -c option and do nothing
git-svn-id: svn://busybox.net/trunk/busybox@7723 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/install.c')
-rw-r--r--coreutils/install.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/coreutils/install.c b/coreutils/install.c
index e057aebed..95bb59463 100644
--- a/coreutils/install.c
+++ b/coreutils/install.c
@@ -64,6 +64,9 @@ extern int install_main(int argc, char **argv)
64 break; 64 break;
65 case 's': /* Strip binaries */ 65 case 's': /* Strip binaries */
66 strip_flag = 1; 66 strip_flag = 1;
67 /* Fall through */
68 case 'c':
69 /* do nothing */
67 break; 70 break;
68 default: 71 default:
69 bb_show_usage(); 72 bb_show_usage();