summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2008-02-02 19:44:09 (GMT)
committerSam Ravnborg <sam@ravnborg.org>2008-02-03 07:58:07 (GMT)
commit36ef805bd51ef831aa6ed66a23ea0dfbc60d0c3e (patch)
tree5230657208ab5ec3e47143f38e7f8467d39b2642 /scripts
parentd6fbfa4fce607254c081d7f58227281d08419d4c (diff)
downloadlinux-36ef805bd51ef831aa6ed66a23ea0dfbc60d0c3e.tar.xz
kconfig: mark config as changed when loading an alternate config
Michal Zachar <mgzachar@mail.t-com.sk> reported that menuconfig did not save the new config when loading an alternate config unless he altered it manually. Mark config as changed upon load of alternate config fixed this. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Roman Zippel <zippel@linux-m68k.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/mconf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c
index 50e61c4..734cf4f 100644
--- a/scripts/kconfig/mconf.c
+++ b/scripts/kconfig/mconf.c
@@ -821,6 +821,7 @@ static void conf_load(void)
return;
if (!conf_read(dialog_input_result)) {
set_config_filename(dialog_input_result);
+ sym_set_change_count(1);
return;
}
show_textbox(NULL, _("File does not exist!"), 5, 38);