diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-01-23 00:59:54 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-22 23:42:56 +0000 |
commit | 59fc4bdefb3853d6893b9e3792018d54bb6bf99f (patch) | |
tree | 1103f46a4d44d24ce70558d7807fd36c85c6da3f /meta/classes/populate_sdk_ext.bbclass | |
parent | 037ea78b0c3de01f87bbe06a1b88a162b2b40496 (diff) | |
download | openembedded-core-59fc4bdefb3853d6893b9e3792018d54bb6bf99f.tar.gz openembedded-core-59fc4bdefb3853d6893b9e3792018d54bb6bf99f.tar.bz2 openembedded-core-59fc4bdefb3853d6893b9e3792018d54bb6bf99f.zip |
classes/populate_sdk*: add dependencies on script files
If the script files we use to construct the SDK installer change then
that really ought to trigger re-execution of the do_populate_sdk(_ext)
task, so add file-checksums varflags to ensure that happens.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk_ext.bbclass')
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 2944576398..a115127ebc 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass @@ -259,6 +259,7 @@ install_tools() { install -m 0644 ${COREBASE}/meta/files/ext-sdk-prepare.py ${SDK_OUTPUT}/${SDKPATH} } +do_populate_sdk_ext[file-checksums] += "${COREBASE}/meta/files/ext-sdk-prepare.py:True" # Since bitbake won't run as root it doesn't make sense to try and install # the extensible sdk as root. @@ -358,4 +359,8 @@ do_populate_sdk_ext[rdepends] += "${@' '.join([x + ':do_build' for x in d.getVar # Make sure codes change in copy_buildsystem can result in rebuilt do_populate_sdk_ext[vardeps] += "copy_buildsystem" +do_populate_sdk_ext[file-checksums] += "${COREBASE}/meta/files/toolchain-shar-relocate.sh:True \ + ${COREBASE}/meta/files/toolchain-shar-extract.sh:True \ + ${COREBASE}/scripts/gen-lockedsig-cache:True" + addtask populate_sdk_ext after do_sdk_depends |