summaryrefslogtreecommitdiffstats
path: root/meta/classes/package.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/package.bbclass')
-rw-r--r--meta/classes/package.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 467f5f1c5a..034da840bd 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -778,7 +778,7 @@ python fixup_perms () {
778 dir = d.getVar(path) or "" 778 dir = d.getVar(path) or ""
779 if dir == "": 779 if dir == "":
780 continue 780 continue
781 fs_perms_table[dir] = fs_perms_entry(bb.data.expand("%s 0755 root root false - - -" % (dir), d)) 781 fs_perms_table[dir] = fs_perms_entry(d.expand("%s 0755 root root false - - -" % (dir)))
782 782
783 # Now we actually load from the configuration files 783 # Now we actually load from the configuration files
784 for conf in get_fs_perms_list(d).split(): 784 for conf in get_fs_perms_list(d).split():
@@ -1801,7 +1801,7 @@ python package_do_pkgconfig () {
1801 m = field_re.match(l) 1801 m = field_re.match(l)
1802 if m: 1802 if m:
1803 hdr = m.group(1) 1803 hdr = m.group(1)
1804 exp = bb.data.expand(m.group(2), pd) 1804 exp = pd.expand(m.group(2))
1805 if hdr == 'Requires': 1805 if hdr == 'Requires':
1806 pkgconfig_needed[pkg] += exp.replace(',', ' ').split() 1806 pkgconfig_needed[pkg] += exp.replace(',', ' ').split()
1807 1807