summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core')
-rw-r--r--meta/recipes-core/base-passwd/base-passwd_3.5.22.bb4
-rw-r--r--meta/recipes-core/busybox/busybox.inc2
-rw-r--r--meta/recipes-core/ncurses/ncurses.inc4
-rw-r--r--meta/recipes-core/uclibc/uclibc.inc2
4 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb b/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb
index 92ad0d9776..ae3864c0a6 100644
--- a/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb
+++ b/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb
@@ -63,10 +63,10 @@ python populate_packages_prepend() {
63 # time before the files from the package may be available, hence 63 # time before the files from the package may be available, hence
64 # storing the data from the files in the preinst directly. 64 # storing the data from the files in the preinst directly.
65 65
66 f = open(bb.data.expand("${STAGING_DATADIR}/base-passwd/passwd.master", d), 'r') 66 f = open(d.expand("${STAGING_DATADIR}/base-passwd/passwd.master"), 'r')
67 passwd = "".join(f.readlines()) 67 passwd = "".join(f.readlines())
68 f.close() 68 f.close()
69 f = open(bb.data.expand("${STAGING_DATADIR}/base-passwd/group.master", d), 'r') 69 f = open(d.expand("${STAGING_DATADIR}/base-passwd/group.master"), 'r')
70 group = "".join(f.readlines()) 70 group = "".join(f.readlines())
71 f.close() 71 f.close()
72 72
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index 7aa131cf69..ec76ad2902 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -82,7 +82,7 @@ python () {
82 if "${OE_FEATURES}": 82 if "${OE_FEATURES}":
83 d.setVar('configmangle_append', 83 d.setVar('configmangle_append',
84 "/^### DISTRO FEATURES$/a\\\n%s\n\n" % 84 "/^### DISTRO FEATURES$/a\\\n%s\n\n" %
85 ("\\n".join((bb.data.expand("${OE_FEATURES}", d).split("\n"))))) 85 ("\\n".join((d.expand("${OE_FEATURES}").split("\n")))))
86 d.setVar('configmangle_append', 86 d.setVar('configmangle_append',
87 "/^### CROSS$/a\\\n%s\n" % 87 "/^### CROSS$/a\\\n%s\n" %
88 ("\\n".join(["CONFIG_CROSS_COMPILER_PREFIX=\"${TARGET_PREFIX}\"", 88 ("\\n".join(["CONFIG_CROSS_COMPILER_PREFIX=\"${TARGET_PREFIX}\"",
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc
index 43303b7196..3b10c4329e 100644
--- a/meta/recipes-core/ncurses/ncurses.inc
+++ b/meta/recipes-core/ncurses/ncurses.inc
@@ -178,8 +178,8 @@ do_install() {
178} 178}
179 179
180python populate_packages_prepend () { 180python populate_packages_prepend () {
181 base_libdir = bb.data.expand("${base_libdir}", d) 181 base_libdir = d.expand("${base_libdir}")
182 pnbase = bb.data.expand("${PN}-lib%s", d) 182 pnbase = d.expand("${PN}-lib%s")
183 do_split_packages(d, base_libdir, '^lib(.*)\.so\..*', pnbase, 'ncurses %s library', prepend=True, extra_depends = '', allow_links=True) 183 do_split_packages(d, base_libdir, '^lib(.*)\.so\..*', pnbase, 'ncurses %s library', prepend=True, extra_depends = '', allow_links=True)
184} 184}
185 185
diff --git a/meta/recipes-core/uclibc/uclibc.inc b/meta/recipes-core/uclibc/uclibc.inc
index 69d8921e3e..78010db25f 100644
--- a/meta/recipes-core/uclibc/uclibc.inc
+++ b/meta/recipes-core/uclibc/uclibc.inc
@@ -142,7 +142,7 @@ python () {
142 if "${OE_FEATURES}": 142 if "${OE_FEATURES}":
143 d.setVar('configmangle_append', 143 d.setVar('configmangle_append',
144 "/^### DISTRO FEATURES$/a\\\n%s\n\n" % 144 "/^### DISTRO FEATURES$/a\\\n%s\n\n" %
145 ("\\n".join((bb.data.expand("${OE_FEATURES}", d).split("\n"))))) 145 ("\\n".join((d.expand("${OE_FEATURES}").split("\n")))))
146 d.setVar('configmangle_append', 146 d.setVar('configmangle_append',
147 "/^### CROSS$/a\\\n%s\n" % 147 "/^### CROSS$/a\\\n%s\n" %
148 ("\\n".join(["CROSS_COMPILER_PREFIX=\"${TARGET_PREFIX}\"", 148 ("\\n".join(["CROSS_COMPILER_PREFIX=\"${TARGET_PREFIX}\"",