Skip to content

Commit

Permalink
kconfig: always write out .config
Browse files Browse the repository at this point in the history
Always write out .config also in the case where config
did not change.
This fixes: http://bugzilla.kernel.org/show_bug.cgi?id=11230

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Josh Boyer <jwboyer@linux.vnet.ibm.com>
Cc: Adrian Bunk <bunk@kernel.org>
  • Loading branch information
Sam Ravnborg committed Aug 4, 2008
1 parent 48a6156 commit 22127f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/kconfig/conf.c
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ int main(int ac, char **av)
break;
}

if (conf_get_changed() && conf_write(NULL)) {
if (conf_write(NULL)) {
fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n"));
exit(1);
}
Expand Down

0 comments on commit 22127f2

Please sign in to comment.