From: Richard Purdie Date: Fri, 16 Nov 2012 15:33:21 +0000 (+0000) Subject: image.bbclass: Add missing dependency on do_package data X-Git-Tag: yocto-4.0~35052 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1e9c9d164f8d12c8de205e04bf7c1dae3660f12a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git image.bbclass: Add missing dependency on do_package data Since the packaging functions now reference the pkgdata files written out during do_package, we need to reference this dependency explicitly. Signed-off-by: Richard Purdie --- diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index ab212b3f0b3..7b24e4e2853 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -84,6 +84,7 @@ LDCONFIGDEPEND_libc-uclibc = "" do_rootfs[depends] += "makedevs-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot ${LDCONFIGDEPEND}" do_rootfs[depends] += "virtual/update-alternatives-native:do_populate_sysroot update-rc.d-native:do_populate_sysroot" +do_rootfs[recrdeptask] += "do_package" IMAGE_TYPE_live = '${@base_contains("IMAGE_FSTYPES", "live", "live", "empty", d)}' inherit image-${IMAGE_TYPE_live}