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-f4fd3a13318f15d212d5519516db50f572f08ada.tar.gz |
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) break; case 's': /* Strip binaries */ strip_flag = 1; + /* Fall through */ + case 'c': + /* do nothing */ break; default: bb_show_usage(); |