diff options
author | Michal Marek <mmarek@suse.cz> | 2009-04-28 15:05:20 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-04-18 14:20:38 +0200 |
commit | c33724a43875786719f51916311308f2752d846e (patch) | |
tree | 4ccd1bd75415ac73084387579728237afb108baa /scripts/kconfig | |
parent | 2b2112f617e8ca600ec24271c93bbd49aa2acce4 (diff) | |
download | op-kernel-dev-c33724a43875786719f51916311308f2752d846e.zip op-kernel-dev-c33724a43875786719f51916311308f2752d846e.tar.gz |
kconfig: Do not record timestamp in auto.conf and autoconf.h
Timestamps in file data are useless and there is already one in .config
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/confdata.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index 61c35bf..834eecb 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c @@ -784,7 +784,6 @@ int conf_write_autoconf(void) const char *str; const char *name; FILE *out, *tristate, *out_h; - time_t now; int i; sym_clear_all_valid(); @@ -811,22 +810,19 @@ int conf_write_autoconf(void) return 1; } - time(&now); fprintf(out, "#\n" "# Automatically generated make config: don't edit\n" "# %s\n" - "# %s" "#\n", - rootmenu.prompt->text, ctime(&now)); + rootmenu.prompt->text); fprintf(tristate, "#\n" "# Automatically generated - do not edit\n" "\n"); fprintf(out_h, "/*\n" " * Automatically generated C config: don't edit\n" " * %s\n" - " * %s" " */\n", - rootmenu.prompt->text, ctime(&now)); + rootmenu.prompt->text); for_all_symbols(i, sym) { sym_calc_value(sym); |