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.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass
index 0ee13e04d7..0f2a484091 100644
--- a/meta/classes/utils.bbclass
+++ b/meta/classes/utils.bbclass
@@ -312,6 +312,8 @@ def explode_deps(s):
312def base_set_filespath(path, d): 312def base_set_filespath(path, d):
313 filespath = [] 313 filespath = []
314 extrapaths = (d.getVar("FILESEXTRAPATHS", True) or "") 314 extrapaths = (d.getVar("FILESEXTRAPATHS", True) or "")
315 # Remove default flag which was used for checking
316 extrapaths = extrapaths.replace("__default:", "")
315 # Don't prepend empty strings to the path list 317 # Don't prepend empty strings to the path list
316 if extrapaths != "": 318 if extrapaths != "":
317 path = extrapaths.split(":") + path 319 path = extrapaths.split(":") + path