Update the kconfig stuff from git.kernel.org.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Mar 06 12:39:04 2009 +0000 (2009-03-06)
changeset 1237d757b7d685c3
parent 1236 aba08231fe27
child 1238 73c8b86a05b1
Update the kconfig stuff from git.kernel.org.
Commit 7826005e5a53645d7aab7c13eda76126eadebf0b

/trunk/kconfig/lex.zconf.c | 7 5 2 0 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
kconfig/lex.zconf.c
     1.1 --- a/kconfig/lex.zconf.c	Fri Mar 06 12:35:58 2009 +0000
     1.2 +++ b/kconfig/lex.zconf.c	Fri Mar 06 12:39:04 2009 +0000
     1.3 @@ -2370,11 +2370,14 @@
     1.4  	current_buf = buf;
     1.5  
     1.6  	if (file->flags & FILE_BUSY) {
     1.7 -		printf("recursive scan (%s)?\n", name);
     1.8 +		printf("%s:%d: do not source '%s' from itself\n",
     1.9 +		       zconf_curname(), zconf_lineno(), name);
    1.10  		exit(1);
    1.11  	}
    1.12  	if (file->flags & FILE_SCANNED) {
    1.13 -		printf("file %s already scanned?\n", name);
    1.14 +		printf("%s:%d: file '%s' is already sourced from '%s'\n",
    1.15 +		       zconf_curname(), zconf_lineno(), name,
    1.16 +		       file->parent->name);
    1.17  		exit(1);
    1.18  	}
    1.19  	file->flags |= FILE_BUSY;