diff options
author | Jan Beulich <JBeulich@novell.com> | 2006-03-09 08:47:46 -0500 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-03-12 17:38:20 -0500 |
commit | dc9a49a4af9cdbe3d79183eefb12372b4dbc09c2 (patch) | |
tree | 23cb86c62a0872ef4c0fae01b0216feb9cbdcd28 /scripts | |
parent | 8cab77a2f851363e35089b9720373b964f64550e (diff) |
kconfig: fix time ordering of writes to .kconfig.d and include/linux/autoconf.h
Since .kconfig.d is used as a make dependency of include/linux/autoconf.h, it
should be written earlier than the header file, to avoid a subsequent rebuild
to consider the header outdated.
Signed-Off-By: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/confdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index b0cbbe2e41bb..1b8882ddbc74 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c | |||
@@ -374,6 +374,7 @@ int conf_write(const char *name) | |||
374 | out_h = fopen(".tmpconfig.h", "w"); | 374 | out_h = fopen(".tmpconfig.h", "w"); |
375 | if (!out_h) | 375 | if (!out_h) |
376 | return 1; | 376 | return 1; |
377 | file_write_dep(NULL); | ||
377 | } | 378 | } |
378 | sym = sym_lookup("KERNELVERSION", 0); | 379 | sym = sym_lookup("KERNELVERSION", 0); |
379 | sym_calc_value(sym); | 380 | sym_calc_value(sym); |
@@ -512,7 +513,6 @@ int conf_write(const char *name) | |||
512 | if (out_h) { | 513 | if (out_h) { |
513 | fclose(out_h); | 514 | fclose(out_h); |
514 | rename(".tmpconfig.h", "include/linux/autoconf.h"); | 515 | rename(".tmpconfig.h", "include/linux/autoconf.h"); |
515 | file_write_dep(NULL); | ||
516 | } | 516 | } |
517 | if (!name || basename != conf_def_filename) { | 517 | if (!name || basename != conf_def_filename) { |
518 | if (!name) | 518 | if (!name) |