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" > > in case OPT_ARM4=y? It doesn't work, I get "-not configured-", no matter > which option is defined.
Above isn't valid. You define multiple user prompts and at most only one is allowed. If you want a derived variable, it should look like this: config GNU_TARGET string default "i386-linux" if OPT_I386 default "i486-linux" if OPT_I486 default "i686-linux" if OPT_I686 default "arm-linux" if OPT_ARM4 default "-not configured-" bye, Roman ------------------------------------------------------- This sf.net email is sponsored by: See the NEW Palm Tungsten T handheld. Power & Color in a compact size! http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0001en _______________________________________________ kbuild-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/kbuild-devel