aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-23 11:51:08 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-23 22:28:56 +0000
commitb70c8e91e6c4240e95e8b22bcc36525a5a0703f9 (patch)
tree34deaa8f8b82a540fe155ccbc8ef5e63eca80773
parentf08d6ccda5db9fdc81d53370aea1f599718897da (diff)
downloadopenembedded-core-contrib-b70c8e91e6c4240e95e8b22bcc36525a5a0703f9.tar.gz
staging: Drop do_configure clean prefunc
With recipe specific sysroots its now pointless to do this, may as well save the cpu cycles. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/staging.bbclass8
1 files changed, 0 insertions, 8 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index df77408f30..93d39c3335 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -173,14 +173,6 @@ addtask populate_sysroot after do_install
SYSROOT_PREPROCESS_FUNCS ?= ""
SYSROOT_DESTDIR = "${WORKDIR}/sysroot-destdir"
-# We clean out any existing sstate from the sysroot if we rerun configure
-python sysroot_cleansstate () {
- ss = sstate_state_fromvars(d, "populate_sysroot")
- sstate_clean(ss, d)
-}
-do_configure[prefuncs] += "sysroot_cleansstate"
-
-
BB_SETSCENE_VERIFY_FUNCTION2 = "sysroot_checkhashes2"
def sysroot_checkhashes2(covered, tasknames, fns, d, invalidtasks):