diff options
Diffstat (limited to 'meta-oe/recipes-support/poco/poco_1.7.5.bb')
-rw-r--r-- | meta-oe/recipes-support/poco/poco_1.7.5.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/poco/poco_1.7.5.bb b/meta-oe/recipes-support/poco/poco_1.7.5.bb index 0fc50e154..2cab7960a 100644 --- a/meta-oe/recipes-support/poco/poco_1.7.5.bb +++ b/meta-oe/recipes-support/poco/poco_1.7.5.bb | |||
@@ -62,12 +62,12 @@ PACKAGES = "${PN}-dbg ${POCO_PACKAGES}" | |||
62 | python __anonymous () { | 62 | python __anonymous () { |
63 | packages = [] | 63 | packages = [] |
64 | testrunners = [] | 64 | testrunners = [] |
65 | components = d.getVar("PACKAGECONFIG", True).split() | 65 | components = d.getVar("PACKAGECONFIG").split() |
66 | components.append("Foundation") | 66 | components.append("Foundation") |
67 | for lib in components: | 67 | for lib in components: |
68 | pkg = ("poco-%s" % lib.lower()).replace("_","") | 68 | pkg = ("poco-%s" % lib.lower()).replace("_","") |
69 | packages.append(pkg) | 69 | packages.append(pkg) |
70 | if not d.getVar("FILES_%s" % pkg, True): | 70 | if not d.getVar("FILES_%s" % pkg): |
71 | d.setVar("FILES_%s" % pkg, "${libdir}/libPoco%s.so.*" % lib) | 71 | d.setVar("FILES_%s" % pkg, "${libdir}/libPoco%s.so.*" % lib) |
72 | testrunners.append("%s" % lib) | 72 | testrunners.append("%s" % lib) |
73 | 73 | ||