summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/allarch.bbclass1
-rw-r--r--meta/classes/image.bbclass4
-rw-r--r--meta/classes/staging.bbclass4
3 files changed, 9 insertions, 0 deletions
diff --git a/meta/classes/allarch.bbclass b/meta/classes/allarch.bbclass
index 9dce49879a..026214ea9a 100644
--- a/meta/classes/allarch.bbclass
+++ b/meta/classes/allarch.bbclass
@@ -32,6 +32,7 @@ python () {
32 d.setVar("TARGET_CFLAGS", "none") 32 d.setVar("TARGET_CFLAGS", "none")
33 d.setVar("TARGET_CXXFLAGS", "none") 33 d.setVar("TARGET_CXXFLAGS", "none")
34 d.setVar("TARGET_LDFLAGS", "none") 34 d.setVar("TARGET_LDFLAGS", "none")
35 d.setVar("POPULATESYSROOTDEPS", "")
35 36
36 # Avoid this being unnecessarily different due to nuances of 37 # Avoid this being unnecessarily different due to nuances of
37 # the target machine that aren't important for "all" arch 38 # the target machine that aren't important for "all" arch
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 04fd5f9961..6b0864913b 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -96,6 +96,10 @@ LDCONFIGDEPEND_libc-musl = ""
96# don't want this dependency, which is causing dependency loop 96# don't want this dependency, which is causing dependency loop
97KERNELDEPMODDEPEND ?= "virtual/kernel:do_packagedata" 97KERNELDEPMODDEPEND ?= "virtual/kernel:do_packagedata"
98 98
99# POPULATESYSROOTDEPS fails to expand correctly with multilibs since overrides aren't set for image.bbclass
100# we don't need these depends so just clear them
101do_populate_sysroot[depends] = ""
102
99do_rootfs[depends] += " \ 103do_rootfs[depends] += " \
100 makedevs-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot ${LDCONFIGDEPEND} \ 104 makedevs-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot ${LDCONFIGDEPEND} \
101 virtual/update-alternatives-native:do_populate_sysroot update-rc.d-native:do_populate_sysroot \ 105 virtual/update-alternatives-native:do_populate_sysroot update-rc.d-native:do_populate_sysroot \
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index 72a7421ba6..2512ae6f5d 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -228,6 +228,10 @@ python do_populate_sysroot () {
228do_populate_sysroot[vardeps] += "${SYSROOT_PREPROCESS_FUNCS}" 228do_populate_sysroot[vardeps] += "${SYSROOT_PREPROCESS_FUNCS}"
229do_populate_sysroot[vardepsexclude] += "MULTI_PROVIDER_WHITELIST" 229do_populate_sysroot[vardepsexclude] += "MULTI_PROVIDER_WHITELIST"
230 230
231POPULATESYSROOTDEPS = ""
232POPULATESYSROOTDEPS_class-target = "virtual/${MLPREFIX}${TARGET_PREFIX}binutils:do_populate_sysroot"
233do_populate_sysroot[depends] += "${POPULATESYSROOTDEPS}"
234
231SSTATETASKS += "do_populate_sysroot" 235SSTATETASKS += "do_populate_sysroot"
232do_populate_sysroot[cleandirs] = "${SYSROOT_DESTDIR}" 236do_populate_sysroot[cleandirs] = "${SYSROOT_DESTDIR}"
233do_populate_sysroot[sstate-inputdirs] = "${SYSROOT_DESTDIR}" 237do_populate_sysroot[sstate-inputdirs] = "${SYSROOT_DESTDIR}"