diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/package.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 2fe30dac0c..a051617ee1 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -739,7 +739,7 @@ python fixup_perms () { | |||
739 | bbpath = d.getVar('BBPATH') | 739 | bbpath = d.getVar('BBPATH') |
740 | fs_perms_tables = d.getVar('FILESYSTEM_PERMS_TABLES') | 740 | fs_perms_tables = d.getVar('FILESYSTEM_PERMS_TABLES') |
741 | if not fs_perms_tables: | 741 | if not fs_perms_tables: |
742 | fs_perms_tables = 'files/fs-perms.txt' | 742 | fs_perms_tables = 'files/fs-perms.txt' if oe.types.boolean(d.getVar('VOLATILE_LOG_DIR', True)) else 'files/fs-perms-persistent-log.txt' |
743 | for conf_file in fs_perms_tables.split(): | 743 | for conf_file in fs_perms_tables.split(): |
744 | str += " %s" % bb.utils.which(bbpath, conf_file) | 744 | str += " %s" % bb.utils.which(bbpath, conf_file) |
745 | return str | 745 | return str |