Re: [kbuild-devel] string and if

2002-11-06 Thread Roman Zippel
Robert Schwebel wrote: > config GNU_TARGET > string "i386-linux" if OPT_I386 > string "i486-linux" if OPT_I486 > string "i686-linux" if OPT_I686 > string "arm-linux" if OPT_ARM4 > default "-not configured-" > > for example give > > GNU_TARGET="arm-linux

[kbuild-devel] string and if

2002-11-06 Thread Robert Schwebel
Hi, I'm currently trying to port a program which used CML1 to lkc/kconfig. Now I need a string variable which is dependend on a bool. Shouldn't this: config GNU_TARGET string "i386-linux" if OPT_I386 string "i486-linux" if OPT_I486 string "i686-linux" if OPT_I686