diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-19 00:52:26 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-19 00:52:26 +0200 |
commit | 28826ac8c02793431203edb4adb961d5521d643d (patch) | |
tree | fdc16e8bb697a047bc553a0e3b9d70a24885a3a0 /debianutils/which.c | |
parent | 854bb6879da7277446c7a943387e2880017804e0 (diff) | |
download | busybox-w32-28826ac8c02793431203edb4adb961d5521d643d.tar.gz busybox-w32-28826ac8c02793431203edb4adb961d5521d643d.tar.bz2 busybox-w32-28826ac8c02793431203edb4adb961d5521d643d.zip |
debianutils/*: convert to new-style "one file" applets
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'debianutils/which.c')
-rw-r--r-- | debianutils/which.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/debianutils/which.c b/debianutils/which.c index d50e7a0d3..c0f897809 100644 --- a/debianutils/which.c +++ b/debianutils/which.c | |||
@@ -5,6 +5,16 @@ | |||
5 | * | 5 | * |
6 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 6 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
7 | */ | 7 | */ |
8 | //config:config WHICH | ||
9 | //config: bool "which" | ||
10 | //config: default y | ||
11 | //config: help | ||
12 | //config: which is used to find programs in your PATH and | ||
13 | //config: print out their pathnames. | ||
14 | |||
15 | //applet:IF_WHICH(APPLET(which, BB_DIR_USR_BIN, BB_SUID_DROP)) | ||
16 | |||
17 | //kbuild:lib-$(CONFIG_WHICH) += which.o | ||
8 | 18 | ||
9 | //usage:#define which_trivial_usage | 19 | //usage:#define which_trivial_usage |
10 | //usage: "[COMMAND]..." | 20 | //usage: "[COMMAND]..." |