diff options
| author | Sam Ravnborg <[email protected]> | 2008-02-02 20:44:09 +0100 |
|---|---|---|
| committer | Sam Ravnborg <[email protected]> | 2008-02-03 08:58:07 +0100 |
| commit | 36ef805bd51ef831aa6ed66a23ea0dfbc60d0c3e (patch) | |
| tree | 5230657208ab5ec3e47143f38e7f8467d39b2642 /scripts | |
| parent | d6fbfa4fce607254c081d7f58227281d08419d4c (diff) | |
kconfig: mark config as changed when loading an alternate config
Michal Zachar <[email protected]> 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 <[email protected]>
Roman Zippel <[email protected]>
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); |