[oe-commits] [meta-openembedded] 14/15: sjf2410-linux-native: Fix do_deploy sstate caching

git at git.openembedded.org git at git.openembedded.org
Wed Aug 28 14:16:50 UTC 2019


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit e9cea3eab955f9cf04827e9075bf0fc5df0737ac
Author: Klauer, Daniel <Daniel.Klauer at gin.de>
AuthorDate: Wed Aug 28 14:43:35 2019 +0200

    sjf2410-linux-native: Fix do_deploy sstate caching
    
    deploy.bbclass requires do_deploy to copy files to DEPLOYDIR (sstate
    input dir) instead of DEPLOY_DIR_TOOLS (sstate output dir), otherwise
    the sstate caching does not work.
    
    Signed-off-by: Daniel Klauer <daniel.klauer at gin.de>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-oe/recipes-support/samsung-soc-utils/sjf2410-linux-native_svn.bb | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta-oe/recipes-support/samsung-soc-utils/sjf2410-linux-native_svn.bb b/meta-oe/recipes-support/samsung-soc-utils/sjf2410-linux-native_svn.bb
index c56c8b9..9e609c4 100644
--- a/meta-oe/recipes-support/samsung-soc-utils/sjf2410-linux-native_svn.bb
+++ b/meta-oe/recipes-support/samsung-soc-utils/sjf2410-linux-native_svn.bb
@@ -27,8 +27,7 @@ do_install() {
 }
 
 do_deploy() {
-    install -d ${DEPLOY_DIR_TOOLS}
-    install -m 0755 sjf2410 ${DEPLOY_DIR_TOOLS}/sjf2410-${PV}
+    install -m 0755 sjf2410 ${DEPLOYDIR}/sjf2410-${PV}
 }
 
 addtask deploy before do_build after do_install

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list