diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2017-03-17 15:53:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-21 22:42:59 +0000 |
commit | a361babe443da635aed83be46679067457fd6a58 (patch) | |
tree | fd1828f316cb001ba1d84d5442f9f03586bea9d4 /meta/recipes-extended/pam | |
parent | 716e0524cfbcac2eb272be1014280833b74bc5c4 (diff) | |
download | openembedded-core-contrib-a361babe443da635aed83be46679067457fd6a58.tar.gz |
meta: replace uses of bb.data.expand(VARNAME, d) with d.expand(VARNAME)
bb.data.expand(x, d) is deprecated API.
[YOCTO #10678]
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/pam')
-rw-r--r-- | meta/recipes-extended/pam/libpam_1.3.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/pam/libpam_1.3.0.bb b/meta/recipes-extended/pam/libpam_1.3.0.bb index 67b9d53d33c..df56d27627f 100644 --- a/meta/recipes-extended/pam/libpam_1.3.0.bb +++ b/meta/recipes-extended/pam/libpam_1.3.0.bb @@ -116,7 +116,7 @@ python populate_packages_prepend () { d.setVar('RPROVIDES_' + pkg, provides) mlprefix = d.getVar('MLPREFIX') or '' - dvar = bb.data.expand('${WORKDIR}/package', d, True) + dvar = d.expand('${WORKDIR}/package') pam_libdir = d.expand('${base_libdir}/security') pam_sbindir = d.expand('${sbindir}') pam_filterdir = d.expand('${base_libdir}/security/pam_filter') |