diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-03 17:01:32 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-14 14:32:30 +0000 |
commit | 3910eaf88d14904eef85b9e391387547df7fc54e (patch) | |
tree | dfc699deb5164818b3dcdb08b567fbcb12d9a68c /meta/classes/cross.bbclass | |
parent | 0109a3623a19f9ae289952a4f054e53c3eca4eaa (diff) | |
download | openembedded-core-3910eaf88d14904eef85b9e391387547df7fc54e.tar.gz openembedded-core-3910eaf88d14904eef85b9e391387547df7fc54e.tar.bz2 openembedded-core-3910eaf88d14904eef85b9e391387547df7fc54e.zip |
classes: Be consistent about sstate-inputdirs/outputdirs ending with '/'
If sstate-inputdirs and sstate-outputdirs don't match with ending '/'
characters, the manifest file can end up corrupted. This change
ensures the metadata is consistent in ending do_populate_root tasks
with this character to avoid manifest file corruption.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/cross.bbclass')
-rw-r--r-- | meta/classes/cross.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/cross.bbclass b/meta/classes/cross.bbclass index 735f6d263f..b57e523465 100644 --- a/meta/classes/cross.bbclass +++ b/meta/classes/cross.bbclass @@ -54,7 +54,7 @@ base_sbindir = "${bindir}" libdir = "${exec_prefix}/lib/${CROSS_TARGET_SYS_DIR}" libexecdir = "${exec_prefix}/libexec/${CROSS_TARGET_SYS_DIR}" -do_populate_sysroot[sstate-inputdirs] = "${SYSROOT_DESTDIR}/${STAGING_DIR_NATIVE}" +do_populate_sysroot[sstate-inputdirs] = "${SYSROOT_DESTDIR}/${STAGING_DIR_NATIVE}/" python cross_virtclass_handler () { if not isinstance(e, bb.event.RecipePreFinalise): |