diff options
Diffstat (limited to 'meta/classes/useradd-staticids.bbclass')
-rw-r--r-- | meta/classes/useradd-staticids.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/useradd-staticids.bbclass b/meta/classes/useradd-staticids.bbclass index 64bf6dc823..70d59e5573 100644 --- a/meta/classes/useradd-staticids.bbclass +++ b/meta/classes/useradd-staticids.bbclass | |||
@@ -59,8 +59,8 @@ def update_useradd_static_config(d): | |||
59 | # Paths are resolved via BBPATH. | 59 | # Paths are resolved via BBPATH. |
60 | def get_table_list(d, var, default): | 60 | def get_table_list(d, var, default): |
61 | files = [] | 61 | files = [] |
62 | bbpath = d.getVar('BBPATH', True) | 62 | bbpath = d.getVar('BBPATH') |
63 | tables = d.getVar(var, True) | 63 | tables = d.getVar(var) |
64 | if not tables: | 64 | if not tables: |
65 | tables = default | 65 | tables = default |
66 | for conf_file in tables.split(): | 66 | for conf_file in tables.split(): |