Arnaud, All, On Monday 23 May 2011 101033 Arnaud Lacombe wrote: > --- > scripts/kconfig/lkc.h | 2 +- > scripts/kconfig/zconf.l | 16 ++++++++-------- > scripts/kconfig/zconf.y | 22 +++++++++++----------- > 3 files changed, 20 insertions(+), 20 deletions(-) > > diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h > index febf0c9..716c36c 100644 > --- a/scripts/kconfig/lkc.h > +++ b/scripts/kconfig/lkc.h > @@ -69,7 +69,7 @@ struct kconf_id { > }; > > #ifdef YYDEBUG > -extern int zconfdebug; > +extern int yyebug; Missing 'd' in yyebug, maybe? See below... [--SNIP--] > diff --git a/scripts/kconfig/zconf.y b/scripts/kconfig/zconf.y > index 98c5716..8564238 100644 > --- a/scripts/kconfig/zconf.y > +++ b/scripts/kconfig/zconf.y > @@ -21,10 +21,10 @@ > > int cdebug = PRINTD; > > -extern int zconflex(void); > +extern int yylex(void); > static void zconfprint(const char *err, ...); > static void zconf_error(const char *err, ...); > -static void zconferror(const char *err); > +static void yyerror(const char *err); > static bool zconf_endtoken(const struct kconf_id *id, int starttoken, int endtoken); > > struct symbol *symbol_hash[SYMBOL_HASHSIZE]; > @@ -505,10 +505,10 @@ void conf_parse(const char *name) > > #if YYDEBUG > if (getenv("ZCONF_DEBUG")) > - zconfdebug = 1; > + yydebug = 1; ... here we use yydebug with a 'd'. Regards, Yann E. MORIN. -- .-----------------.--------------------.------------------.--------------------. | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: | | +0/33 662376056 | Software Designer | \ / CAMPAIGN | ^ | | --==< O_o >==-- '------------.-------: X AGAINST | /e\ There is no | | http://ymorin.is-a-geek.org/ | (*_*) | / \ HTML MAIL | """ conspiracy. | '------------------------------'-------'------------------'--------------------' -- 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