summaryrefslogtreecommitdiffstats
path: root/meta/classes/utils.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/utils.bbclass')
-rw-r--r--meta/classes/utils.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass
index ae6fb0d719..02e803a702 100644
--- a/meta/classes/utils.bbclass
+++ b/meta/classes/utils.bbclass
@@ -386,8 +386,9 @@ def explode_deps(s):
386 return bb.utils.explode_deps(s) 386 return bb.utils.explode_deps(s)
387 387
388def base_set_filespath(path, d): 388def base_set_filespath(path, d):
389 bb.note("base_set_filespath usage is deprecated, %s should be fixed" % d.getVar("P", 1))
390 filespath = [] 389 filespath = []
390 extrapaths = (bb.data.getVar("FILESEXTRAPATHS", d, True) or "").split()
391 path = extrapaths + path
391 # The ":" ensures we have an 'empty' override 392 # The ":" ensures we have an 'empty' override
392 overrides = (bb.data.getVar("OVERRIDES", d, 1) or "") + ":" 393 overrides = (bb.data.getVar("OVERRIDES", d, 1) or "") + ":"
393 for p in path: 394 for p in path: