diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-16 15:33:21 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-20 15:31:49 +0000 |
commit | 265f69a593cdf70e40bcbe6383b865dac3632f55 (patch) | |
tree | bb9102b01ee4a7de1a7460ec3d03424191ba5871 /meta/classes/image.bbclass | |
parent | f32ef56cda80115cd8fd5d629caa424f065e39a4 (diff) | |
download | poky-265f69a593cdf70e40bcbe6383b865dac3632f55.tar.gz |
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.
(From OE-Core rev: 1e9c9d164f8d12c8de205e04bf7c1dae3660f12a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index ab212b3f0b..7b24e4e285 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -84,6 +84,7 @@ LDCONFIGDEPEND_libc-uclibc = "" | |||
84 | 84 | ||
85 | do_rootfs[depends] += "makedevs-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot ${LDCONFIGDEPEND}" | 85 | do_rootfs[depends] += "makedevs-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot ${LDCONFIGDEPEND}" |
86 | do_rootfs[depends] += "virtual/update-alternatives-native:do_populate_sysroot update-rc.d-native:do_populate_sysroot" | 86 | do_rootfs[depends] += "virtual/update-alternatives-native:do_populate_sysroot update-rc.d-native:do_populate_sysroot" |
87 | do_rootfs[recrdeptask] += "do_package" | ||
87 | 88 | ||
88 | IMAGE_TYPE_live = '${@base_contains("IMAGE_FSTYPES", "live", "live", "empty", d)}' | 89 | IMAGE_TYPE_live = '${@base_contains("IMAGE_FSTYPES", "live", "live", "empty", d)}' |
89 | inherit image-${IMAGE_TYPE_live} | 90 | inherit image-${IMAGE_TYPE_live} |