From 54fda00db6da1764b066874ac05c0246358ced0c Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 14 Oct 2006 00:48:54 +0000 Subject: don't generate .tmpconfig.h and .kconfig.d SVN-Revision: 5071 --- scripts/config/util.c | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'scripts/config/util.c') diff --git a/scripts/config/util.c b/scripts/config/util.c index 656d2c87d6..d4e934b34a 100644 --- a/scripts/config/util.c +++ b/scripts/config/util.c @@ -26,31 +26,6 @@ struct file *file_lookup(const char *name) return file; } -/* write a dependency file as used by kbuild to track dependencies */ -int file_write_dep(const char *name) -{ - struct file *file; - FILE *out; - - if (!name) - name = ".kconfig.d"; - out = fopen("..config.tmp", "w"); - if (!out) - return 1; - fprintf(out, "deps_config := \\\n"); - for (file = file_list; file; file = file->next) { - if (file->next) - fprintf(out, "\t%s \\\n", file->name); - else - fprintf(out, "\t%s\n", file->name); - } - fprintf(out, "\n.config include/linux/autoconf.h: $(deps_config)\n\n$(deps_config):\n"); - fclose(out); - rename("..config.tmp", name); - return 0; -} - - /* Allocate initial growable sting */ struct gstr str_new(void) { -- cgit v1.2.3