diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-05 02:24:28 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-05 02:24:28 +0200 |
commit | d8f4b819c3a5b54a978c6fe5249a17cff490c4a1 (patch) | |
tree | ce7f03f733de2b52e101a41e9b87256d106fe1d5 /scripts/kconfig/conf.c | |
parent | tracehook: kerneldoc fix (diff) | |
parent | kconfig: drop the ""trying to assign nonexistent symbol" warning (diff) | |
download | linux-d8f4b819c3a5b54a978c6fe5249a17cff490c4a1.tar.xz linux-d8f4b819c3a5b54a978c6fe5249a17cff490c4a1.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes
* git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes:
kconfig: drop the ""trying to assign nonexistent symbol" warning
kconfig: always write out .config
Diffstat (limited to 'scripts/kconfig/conf.c')
-rw-r--r-- | scripts/kconfig/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 9fba838c7069..36b5eedcdc75 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -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); } |