summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/boost
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-25 14:25:16 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-27 10:25:34 +0000
commit0a434ac10158e2011d41a1189e65e9474b1672be (patch)
tree6171516b25cb337343a6373e34aec0d061e4f5e8 /meta/recipes-support/boost
parent71fded5145454b144413057e11f78f718d947093 (diff)
downloadpoky-0a434ac10158e2011d41a1189e65e9474b1672be.tar.gz
getVar/setVar cleanups
Complete the bb.data.getVar/setVar replacements with accesses directly to the data store object. (From OE-Core rev: 2864ff6a4b3c3f9b3bbb6d2597243cc5d3715939) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/boost')
-rw-r--r--meta/recipes-support/boost/boost.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc
index ddb65b754d..fecdb97602 100644
--- a/meta/recipes-support/boost/boost.inc
+++ b/meta/recipes-support/boost/boost.inc
@@ -57,8 +57,8 @@ python __anonymous () {
57 packages.append(pkg) 57 packages.append(pkg)
58 if not d.getVar("FILES_%s" % pkg, 1): 58 if not d.getVar("FILES_%s" % pkg, 1):
59 d.setVar("FILES_%s" % pkg, "${libdir}/libboost_%s*.so.*" % lib) 59 d.setVar("FILES_%s" % pkg, "${libdir}/libboost_%s*.so.*" % lib)
60 bb.data.setVar("BOOST_PACKAGES", " ".join(packages), d) 60 d.setVar("BOOST_PACKAGES", " ".join(packages))
61 bb.data.setVar("BJAM_EXTRA", " ".join(extras), d) 61 d.setVar("BJAM_EXTRA", " ".join(extras))
62} 62}
63 63
64# Override the contents of specific packages 64# Override the contents of specific packages