summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2020-05-15 12:14:39 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2020-05-15 13:51:12 +0200
commit0e807864fd2ce9dadfcfbac6ca45a005c7d0bc41 (patch)
tree893b3d8977ef3569d843f6097b676b174e2edee6
parent8de97374b2b880ace52a6facdc44b18462b34f00 (diff)
downloadptxdist-0e807864fd2ce9dadfcfbac6ca45a005c7d0bc41.tar.gz
ptxdist-0e807864fd2ce9dadfcfbac6ca45a005c7d0bc41.tar.xz
ptxd_lib_dgen: allow host-system-* to run early
These packages don't need chrpath, pkg-config, etc. anyways. And this way the build fails faster if something is missing. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--scripts/lib/ptxd_lib_dgen.awk2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/lib/ptxd_lib_dgen.awk b/scripts/lib/ptxd_lib_dgen.awk
index 0ca895d5a..8ee88827b 100644
--- a/scripts/lib/ptxd_lib_dgen.awk
+++ b/scripts/lib/ptxd_lib_dgen.awk
@@ -534,6 +534,8 @@ function write_deps_pkg_active_virtual(this_PKG, this_pkg, prefix) {
return;
if (this_pkg ~ /^host-chrpath$/)
return;
+ if (this_pkg ~ /^host-system-/)
+ return;
if (prefix != "")
virtual = "virtual-host-tools";