diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-02-02 22:44:09 +0300 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2008-02-03 10:58:07 +0300 |
commit | 36ef805bd51ef831aa6ed66a23ea0dfbc60d0c3e (patch) | |
tree | 5230657208ab5ec3e47143f38e7f8467d39b2642 /scripts | |
parent | d6fbfa4fce607254c081d7f58227281d08419d4c (diff) | |
download | linux-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index 50e61c411bc0..734cf4f3131e 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); |