Hi, On Wed, May 25, 2011 at 1:36 AM, Arnaud Lacombe <lacombar@xxxxxxxxx> wrote: > Considering the following configuration: > > config F > bool "F" > > choice AB > bool "AB" > config A > bool "A" > config B > bool "B" > endchoice > > if A > config D > bool > default y if F > select E > config E > bool "E" > endif > > if B > config D > bool > default y if F > select E > config E > bool "E" > endif > > The following configuration: > > CONFIG_F=y > CONFIG_A=y > CONFIG_D=y > CONFIG_E=y > d'oh! this should have read: CONFIG_F=y CONFIG_A=y # CONFIG_B is not set CONFIG_D=y CONFIG_E=y but I missed the leading space, and git decided to eat the assignment of CONFIG_B. sorry about that, - Arnaud -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html