diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-19 13:11:54 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-19 16:58:42 +0100 |
commit | 8a313f6d32ae0bdac0393887712b09f1b685aaa5 (patch) | |
tree | 23c12c10a0d7a44a2601bcac5aa06472196bcd1d | |
parent | ec4fea852bde2294ad7a7a703ccf11eb9a109c31 (diff) | |
download | openembedded-core-8a313f6d32ae0bdac0393887712b09f1b685aaa5.tar.gz openembedded-core-8a313f6d32ae0bdac0393887712b09f1b685aaa5.tar.bz2 openembedded-core-8a313f6d32ae0bdac0393887712b09f1b685aaa5.zip |
staging.bbclass: Ensure the task starts from a clean directory
I found that some files were not getting removed from the sysroot, despite them
clearly being removed by the recipe. I found SYSROOT_DESTDIR is only ever copied
into, not cleaned. This patch ensures its empty when the task starts so that
stale files are removed and not persisted.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/staging.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index 6540349ff7..1af9b1575c 100644 --- a/meta/classes/staging.bbclass +++ b/meta/classes/staging.bbclass @@ -105,6 +105,7 @@ python do_populate_sysroot () { } SSTATETASKS += "do_populate_sysroot" +do_populate_sysroot[cleandirs] = "${SYSROOT_DESTDIR}" do_populate_sysroot[sstate-name] = "populate-sysroot" do_populate_sysroot[sstate-inputdirs] = "${SYSROOT_DESTDIR}" do_populate_sysroot[sstate-outputdirs] = "${STAGING_DIR_HOST}/" |