summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-10-06 19:43:36 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-10-06 20:02:55 +0200
commitcfd13ea1c47b5797d4ff9cca45092fba65b2c658 (patch)
treef27f76e1a25844cc43f987f4cdceb2dd848f8140
parentec29df1274f596712f375745526f9de27847aa36 (diff)
downloadptxdist-cfd13ea1c47b5797d4ff9cca45092fba65b2c658.tar.gz
ptxdist-cfd13ea1c47b5797d4ff9cca45092fba65b2c658.tar.xz
ptxd_lib_dgen: remove unnecessary dependency on the config files
The config file is part of the hash. No need to depend on it. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--scripts/lib/ptxd_lib_dgen.awk9
1 files changed, 0 insertions, 9 deletions
diff --git a/scripts/lib/ptxd_lib_dgen.awk b/scripts/lib/ptxd_lib_dgen.awk
index eeb34fbdb..f04f16b5d 100644
--- a/scripts/lib/ptxd_lib_dgen.awk
+++ b/scripts/lib/ptxd_lib_dgen.awk
@@ -380,14 +380,6 @@ function write_deps_pkg_active_cfghash(this_PKG, this_pkg) {
print "endif" > DGEN_DEPS_POST;
}
-function write_deps_pkg_active_all(this_PKG, this_pkg) {
- print "ifneq ($(filter /%,$(" this_PKG "_CONFIG)),)" > DGEN_DEPS_POST;
- print "ifeq ($(wildcard $(" this_PKG "_CONFIG)),)" > DGEN_DEPS_POST;
- print "$(STATEDIR)/" this_pkg ".$(" this_PKG "_CFGHASH).cfghash: $(" this_PKG "_CONFIG)" > DGEN_DEPS_POST;
- print "endif" > DGEN_DEPS_POST;
- print "endif" > DGEN_DEPS_POST;
-}
-
function write_deps_pkg_active(this_PKG, this_pkg, prefix) {
#
# default deps
@@ -583,7 +575,6 @@ END {
this_pkg = PKG_to_pkg[this_PKG];
this_pkg_prefix = gensub(/^(host-|cross-|image-|).*/, "\\1", 1, this_pkg)
- write_deps_pkg_active_all(this_PKG, this_pkg)
if (this_pkg_prefix != "image-") {
write_deps_pkg_active(this_PKG, this_pkg, this_pkg_prefix)
write_deps_pkg_active_virtual(this_PKG, this_pkg, this_pkg_prefix)