diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-10-29 11:10:02 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-10-29 11:10:02 +0000 |
commit | f4fd3a13318f15d212d5519516db50f572f08ada (patch) | |
tree | 6017f31d8e7e268ef29263ea0ea7707fa4ce14ca | |
parent | 984b45142a1771edcd28c9f7e2fa3269e7e2dde3 (diff) | |
download | busybox-w32-f4fd3a13318f15d212d5519516db50f572f08ada.tar.gz busybox-w32-f4fd3a13318f15d212d5519516db50f572f08ada.tar.bz2 busybox-w32-f4fd3a13318f15d212d5519516db50f572f08ada.zip |
Accept the -c option and do nothing
-rw-r--r-- | coreutils/install.c | 3 |
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(); |