aboutsummaryrefslogtreecommitdiff
path: root/coreutils/install.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-10-29 11:10:02 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-10-29 11:10:02 +0000
commitf4fd3a13318f15d212d5519516db50f572f08ada (patch)
tree6017f31d8e7e268ef29263ea0ea7707fa4ce14ca /coreutils/install.c
parent984b45142a1771edcd28c9f7e2fa3269e7e2dde3 (diff)
downloadbusybox-f4fd3a13318f15d212d5519516db50f572f08ada.tar.gz
Accept the -c option and do nothing
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)
break;
case 's': /* Strip binaries */
strip_flag = 1;
+ /* Fall through */
+ case 'c':
+ /* do nothing */
break;
default:
bb_show_usage();