diff options
Diffstat (limited to 'scripts/kconfig/confdata.c')
| -rw-r--r-- | scripts/kconfig/confdata.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index 1134892599da..3569d2dec37c 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c @@ -848,6 +848,7 @@ int conf_write(const char *name)  	const char *str;  	char tmpname[PATH_MAX + 1], oldname[PATH_MAX + 1];  	char *env; +	int i;  	bool need_newline = false;  	if (!name) @@ -930,6 +931,9 @@ next:  	}  	fclose(out); +	for_all_symbols(i, sym) +		sym->flags &= ~SYMBOL_WRITTEN; +  	if (*tmpname) {  		if (is_same(name, tmpname)) {  			conf_message("No change to %s", name); | 
