From 904ae4a7531d6cb8b2cfefb7da8901b21a65ae7b Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 5 Oct 2010 10:06:11 +0100 Subject: Improve FILESPATH usage in .bbappend recipes Signed-off-by: Richard Purdie --- meta/classes/base.bbclass | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'meta/classes') diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index dd346ee8f3..a9e5657d86 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -106,6 +106,8 @@ DEPENDS_virtclass-nativesdk_prepend="${@base_dep_prepend(d)} " def base_set_filespath(path, d): filespath = [] + extrapaths = (bb.data.getVar("FILESEXTRAPATHS", d, True) or "").split() + path = extrapaths + path # The ":" ensures we have an 'empty' override overrides = (bb.data.getVar("OVERRIDES", d, 1) or "") + ":" for p in path: @@ -114,6 +116,9 @@ def base_set_filespath(path, d): return ":".join(filespath) FILESPATH = "${@base_set_filespath([ "${FILE_DIRNAME}/${PF}", "${FILE_DIRNAME}/${P}", "${FILE_DIRNAME}/${PN}", "${FILE_DIRNAME}/${BP}", "${FILE_DIRNAME}/${BPN}", "${FILE_DIRNAME}/files", "${FILE_DIRNAME}" ], d)}" +# THISDIR only works properly with imediate expansion as it has to run +# in the context of the location its used (:=) +THISDIR = "${@os.path.dirname(bb.data.getVar('FILE', d, True))}" SCENEFUNCS += "base_scenefunction" -- cgit v1.2.3-54-g00ecf