diff options
author | Markus Heidelberg <markus.heidelberg@web.de> | 2009-05-17 19:36:54 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2009-06-09 16:37:51 -0400 |
commit | 12122f62324e7c6837ee8b0fa8d257ce7ebcfc6f (patch) | |
tree | 5f4dff0d7a3612c45a87a2fb4ba2599484eea9fd /scripts/kconfig/util.c | |
parent | 284026cdfb5a899e558dcb7a36aefaf54a78c094 (diff) |
kconfig: do not hardcode "include/config/auto.conf" filename
Regardless of KCONFIG_AUTOCONFIG, the filename written as a Make target
into "include/config/auto.conf.cmd" was always the default one.
Of course this doesn't make it work for the Kernel kbuild system, since
there the filename is hardcoded at several places in the Makefiles.
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/kconfig/util.c')
-rw-r--r-- | scripts/kconfig/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/kconfig/util.c b/scripts/kconfig/util.c index 3cc9f9369036..b6b2a46af14c 100644 --- a/scripts/kconfig/util.c +++ b/scripts/kconfig/util.c | |||
@@ -46,8 +46,8 @@ int file_write_dep(const char *name) | |||
46 | else | 46 | else |
47 | fprintf(out, "\t%s\n", file->name); | 47 | fprintf(out, "\t%s\n", file->name); |
48 | } | 48 | } |
49 | fprintf(out, "\ninclude/config/auto.conf: \\\n" | 49 | fprintf(out, "\n%s: \\\n" |
50 | "\t$(deps_config)\n\n"); | 50 | "\t$(deps_config)\n\n", conf_get_autoconfig_name()); |
51 | 51 | ||
52 | expr_list_for_each_sym(sym_env_list, e, sym) { | 52 | expr_list_for_each_sym(sym_env_list, e, sym) { |
53 | struct property *prop; | 53 | struct property *prop; |
@@ -61,7 +61,7 @@ int file_write_dep(const char *name) | |||
61 | if (!value) | 61 | if (!value) |
62 | value = ""; | 62 | value = ""; |
63 | fprintf(out, "ifneq \"$(%s)\" \"%s\"\n", env_sym->name, value); | 63 | fprintf(out, "ifneq \"$(%s)\" \"%s\"\n", env_sym->name, value); |
64 | fprintf(out, "include/config/auto.conf: FORCE\n"); | 64 | fprintf(out, "%s: FORCE\n", conf_get_autoconfig_name()); |
65 | fprintf(out, "endif\n"); | 65 | fprintf(out, "endif\n"); |
66 | } | 66 | } |
67 | 67 | ||