From: Bernhard Reutner-Fischer Date: Sun, 23 Sep 2007 20:46:44 +0000 (-0000) Subject: - add the $(BASE_TARGETS) per default X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1fc2723ca94dde013846eee079f15b52484c4327;p=buildroot.git - add the $(BASE_TARGETS) per default --- diff --git a/package/config/kconfig-to-buildroot2.patch b/package/config/kconfig-to-buildroot2.patch index ef0d2e04a7..0a99fbf94a 100644 --- a/package/config/kconfig-to-buildroot2.patch +++ b/package/config/kconfig-to-buildroot2.patch @@ -1369,7 +1369,7 @@ Index: util.c + e = p->expr; + if (e && e->left.sym->name) { + if (!done) { -+ fprintf(out, "%s:", br2_symbol_printer(sym->name)); ++ fprintf(out, "%s: $(BASE_TARGETS)", br2_symbol_printer(sym->name)); + done = 1; + } +//printf("SELECTS %s\n",e->left.sym->name); diff --git a/package/config/util.c b/package/config/util.c index a388f848cc..d782f4b874 100644 --- a/package/config/util.c +++ b/package/config/util.c @@ -84,7 +84,7 @@ static int write_make_deps(const char *name) e = p->expr; if (e && e->left.sym->name) { if (!done) { - fprintf(out, "%s:", br2_symbol_printer(sym->name)); + fprintf(out, "%s: $(BASE_TARGETS)", br2_symbol_printer(sym->name)); done = 1; } //printf("SELECTS %s\n",e->left.sym->name);