summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/base-passwd
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-02 13:50:47 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-04 23:39:00 +0000
commit6ab50017e18cbb5eeeee2df9075fdfa54d05489f (patch)
treec19e07a3e7c63c881339bc625cdca5b6714cb295 /meta/recipes-core/base-passwd
parente8860f77a2099d41cab3bdd290c801596bcfbba4 (diff)
downloadpoky-6ab50017e18cbb5eeeee2df9075fdfa54d05489f.tar.gz
busybox/gtk/perl/base-passwd: Ensure data is correctly expanded
Where variables are used in python, we need to ensure they are expanded. This happens to work at the moment but likely will not happen in future and isn't good code practise. Its mostly an issue around key values, since bitbake has already performed key expansion when these functions are executed. (From OE-Core rev: 6d1142b56948c048111c4f78d9909c1846ab225b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/base-passwd')
-rw-r--r--meta/recipes-core/base-passwd/base-passwd_3.5.29.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/base-passwd/base-passwd_3.5.29.bb b/meta/recipes-core/base-passwd/base-passwd_3.5.29.bb
index a770168298..10457b2dec 100644
--- a/meta/recipes-core/base-passwd/base-passwd_3.5.29.bb
+++ b/meta/recipes-core/base-passwd/base-passwd_3.5.29.bb
@@ -89,7 +89,7 @@ if [ ! -e $D${sysconfdir}/group ]; then
89""" + group + """EOF 89""" + group + """EOF
90fi 90fi
91""" 91"""
92 d.setVar('pkg_preinst_${PN}', preinst) 92 d.setVar(d.expand('pkg_preinst_${PN}'), preinst)
93} 93}
94 94
95addtask do_package after do_populate_sysroot 95addtask do_package after do_populate_sysroot