diff options
Diffstat (limited to 'meta/classes/utils.bbclass')
-rw-r--r-- | meta/classes/utils.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index c1de2f6930..be0a25a2b9 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass | |||
@@ -308,7 +308,7 @@ def base_set_filespath(path, d): | |||
308 | if extrapaths != "": | 308 | if extrapaths != "": |
309 | path = extrapaths.split(":") + path | 309 | path = extrapaths.split(":") + path |
310 | # The ":" ensures we have an 'empty' override | 310 | # The ":" ensures we have an 'empty' override |
311 | overrides = ((d.getVar("OVERRIDES", True) or "") + ":").split(":") | 311 | overrides = ((d.getVar("FILESOVERRIDES", True) or "") + ":").split(":") |
312 | for p in path: | 312 | for p in path: |
313 | if p != "": | 313 | if p != "": |
314 | for o in overrides: | 314 | for o in overrides: |