diff options
author | Robert P. J. Day <rpjday@mindspring.com> | 2006-12-12 14:04:19 -0500 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2006-12-12 14:04:19 -0500 |
commit | bef1f40261c8bc5ad2ca70a5a1760b0eb79b6812 (patch) | |
tree | c2799c3f46bb82d3db3be07ed22edc13b4352114 /Documentation/kbuild/kconfig-language.txt | |
parent | c48e3fca3f063edb0c8c4d163e880b94c1d9f93d (diff) |
kconfig: Standardize "depends" -> "depends on" in Kconfig files
Standardize the miniscule percentage of occurrences of "depends" in
Kconfig files to "depends on", and update kconfig-language.txt to
reflect that.
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'Documentation/kbuild/kconfig-language.txt')
-rw-r--r-- | Documentation/kbuild/kconfig-language.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/kbuild/kconfig-language.txt b/Documentation/kbuild/kconfig-language.txt index 125093c3ef76..536d5bfbdb8d 100644 --- a/Documentation/kbuild/kconfig-language.txt +++ b/Documentation/kbuild/kconfig-language.txt | |||
@@ -29,7 +29,7 @@ them. A single configuration option is defined like this: | |||
29 | 29 | ||
30 | config MODVERSIONS | 30 | config MODVERSIONS |
31 | bool "Set version information on all module symbols" | 31 | bool "Set version information on all module symbols" |
32 | depends MODULES | 32 | depends on MODULES |
33 | help | 33 | help |
34 | Usually, modules have to be recompiled whenever you switch to a new | 34 | Usually, modules have to be recompiled whenever you switch to a new |
35 | kernel. ... | 35 | kernel. ... |
@@ -163,7 +163,7 @@ The position of a menu entry in the tree is determined in two ways. First | |||
163 | it can be specified explicitly: | 163 | it can be specified explicitly: |
164 | 164 | ||
165 | menu "Network device support" | 165 | menu "Network device support" |
166 | depends NET | 166 | depends on NET |
167 | 167 | ||
168 | config NETDEVICES | 168 | config NETDEVICES |
169 | ... | 169 | ... |
@@ -188,10 +188,10 @@ config MODULES | |||
188 | 188 | ||
189 | config MODVERSIONS | 189 | config MODVERSIONS |
190 | bool "Set version information on all module symbols" | 190 | bool "Set version information on all module symbols" |
191 | depends MODULES | 191 | depends on MODULES |
192 | 192 | ||
193 | comment "module support disabled" | 193 | comment "module support disabled" |
194 | depends !MODULES | 194 | depends on !MODULES |
195 | 195 | ||
196 | MODVERSIONS directly depends on MODULES, this means it's only visible if | 196 | MODVERSIONS directly depends on MODULES, this means it's only visible if |
197 | MODULES is different from 'n'. The comment on the other hand is always | 197 | MODULES is different from 'n'. The comment on the other hand is always |