diff options
| author | Trent Piepho <[email protected]> | 2007-06-27 14:09:54 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2007-06-28 11:34:53 -0700 |
| commit | 59faba1b316a7798a33752b3889193333f8af1a0 (patch) | |
| tree | aa62041bf8c66f18cb78e97fe6ebfccc0f4d13f7 /include/linux/debugobjects.h | |
| parent | 30acbabae38793c9c9acace4de5b1c1889570768 (diff) | |
Fix Kconfig dependency problems wrt boolean menuconfigs
If one has a dependency chain (tristate)FOO depends on (bool)BAR depends on
(tristate)BAZ, build problems will result. If BAZ=m, then BAR can be set
y, which allows FOO=y. It's possible to have FOO=y && BAZ=m, which
wouldn't be allowed if FOO depended directly on BAZ. In effect, the bool
promotes the tristate from m to y.
This ends up causing a problem with several menuconfigs that look like:
menuconfig BAR
bool
depends on BAZ [tristate]
if BAR
config FOO
tristate
endif
The solution used here is to add the dependencies of BAR to the if
statement, so that items in the if block will gain a direct
non-bool-promoted dependency on BAZ. This is how it would work if a menu
was used instead of an if block.
Signed-off-by: Trent Piepho <[email protected]>
Acked-by: Mauro Carvalho Chehab <[email protected]>
Cc: "David S. Miller" <[email protected]>
Acked-by: Jeff Garzik <[email protected]>
Cc: Dominik Brodowski <[email protected]>
Cc: Chas Williams <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'include/linux/debugobjects.h')
0 files changed, 0 insertions, 0 deletions