From 1ed15fbd4c45ec5fbdc51e769ccf06ea58a72446 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 19 Jul 2012 13:11:54 +0000 Subject: 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. (From OE-Core rev: 8a313f6d32ae0bdac0393887712b09f1b685aaa5) Signed-off-by: Richard Purdie --- meta/classes/staging.bbclass | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/classes') 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}/" -- cgit v1.2.3-54-g00ecf