Fixup 'make clean' to properly clean the _install directory
[oweals/busybox.git] / debianutils / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Debian Utilities"
7
8 config CONFIG_MKTEMP
9         bool "mktemp"
10         default n
11         help
12           mktemp is used to create unique temporary files
13
14 config CONFIG_READLINK
15         bool "readlink"
16         default n
17         help
18           This program reads a symbolic link and returns the name
19           of the file it points to
20
21 config CONFIG_RUN_PARTS
22         bool "run-parts"
23         default n
24         help
25           run-parts is a utility designed to run all the scripts in a directory.
26
27           It is useful to set up a directory like cron.daily, where you need to
28           execute all the scripts in that directory.
29
30           In this implementation of run-parts some features (such as report mode) 
31           are not implemented.
32
33           Unless you know that run-parts is used in some of your scripts
34           you can safely say N here.
35
36 config CONFIG_START_STOP_DAEMON
37         bool "start-stop-daemon"
38         default y
39         help
40           start-stop-daemon is used to control the creation and
41           termination of system-level processes, usually the ones
42           started during the startup of the system.
43
44 config CONFIG_WHICH
45         bool "which"
46         default n
47         help
48           which is used to find programs in your PATH and
49           print out their pathnames.
50
51 endmenu
52