diff options
| -rw-r--r-- | meta/classes/utils.bbclass | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index 0a533afb1f..d1f6563a0a 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass | |||
| @@ -307,11 +307,10 @@ def base_set_filespath(path, d): | |||
| 307 | if extrapaths != "": | 307 | if extrapaths != "": |
| 308 | path = extrapaths.split(":") + path | 308 | path = extrapaths.split(":") + path |
| 309 | # The ":" ensures we have an 'empty' override | 309 | # The ":" ensures we have an 'empty' override |
| 310 | overrides = (":" + (d.getVar("FILESOVERRIDES", True) or "")).split(":") | 310 | overrides = ((d.getVar("FILESOVERRIDES", True) or "") + ":").split(":") |
| 311 | overrides.reverse() | 311 | for p in path: |
| 312 | for o in overrides: | 312 | if p != "": |
| 313 | for p in path: | 313 | for o in overrides: |
| 314 | if p != "": | ||
| 315 | filespath.append(os.path.join(p, o)) | 314 | filespath.append(os.path.join(p, o)) |
| 316 | return ":".join(filespath) | 315 | return ":".join(filespath) |
| 317 | 316 | ||
