summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-22 21:37:23 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-24 15:12:27 +0000
commitcf61ea24d29b663ebdac091ec98211a82693b093 (patch)
treeded94f8f3edbea61eba4c0398298ae89fbb5c0cf
parent56e3fcc387512ae0225c359b86b9025ae945b3c9 (diff)
downloadpoky-cf61ea24d29b663ebdac091ec98211a82693b093.tar.gz
build-appliance-image: Add explict dependency on do_unpack
The code called by do_rootfs explicitly needs the code obtained during do_unpack. If built from sstate, it might not be present so we ensure it is by adding an explicit dependency. This fixes build failures when building from sstate. (From OE-Core rev: 53d3c3caf1894e088ebf10fdf233cdf109b04da6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/images/build-appliance-image.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/images/build-appliance-image.bb b/meta/recipes-core/images/build-appliance-image.bb
index 2bcfe8c508..35c6abebec 100644
--- a/meta/recipes-core/images/build-appliance-image.bb
+++ b/meta/recipes-core/images/build-appliance-image.bb
@@ -68,6 +68,8 @@ fakeroot do_populate_poky_src () {
68 68
69IMAGE_PREPROCESS_COMMAND += "do_populate_poky_src; " 69IMAGE_PREPROCESS_COMMAND += "do_populate_poky_src; "
70 70
71addtask rootfs after do_unpack
72
71python () { 73python () {
72 # Ensure we run these usually noexec tasks 74 # Ensure we run these usually noexec tasks
73 d.delVarFlag("do_fetch", "noexec") 75 d.delVarFlag("do_fetch", "noexec")