diff options
author | Qi.Chen@windriver.com <Qi.Chen@windriver.com> | 2015-10-21 15:47:40 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-10-23 12:56:44 +0200 |
commit | ff477aa4e6199b3433ab315a5533ed89f09ad9c9 (patch) | |
tree | e5ca8d48e018a2aebe0130c8d7b7b746efa83f78 /meta-oe/recipes-extended | |
parent | 8e26d2cddf21dc7c187bd65ae90e7f4189e504bb (diff) | |
download | meta-openembedded-ff477aa4e6199b3433ab315a5533ed89f09ad9c9.tar.gz |
rrdtool: fix multilib problem
When building rrdtool with multilib enabled, we would meet the following error.
ERROR: QA Issue: rrdtool: Files/directories were installed but not shipped in any package:
/usr/lib
/usr/lib/python2.7
/usr/lib/python2.7/site-packages
/usr/lib/python2.7/site-packages/rrdtool.so
....
Fix this problem by using nonarch_libdir instead of libdir.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
-rw-r--r-- | meta-oe/recipes-extended/rrdtool/rrdtool_1.5.4.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-extended/rrdtool/rrdtool_1.5.4.bb b/meta-oe/recipes-extended/rrdtool/rrdtool_1.5.4.bb index 9b54deb22..d9ac92469 100644 --- a/meta-oe/recipes-extended/rrdtool/rrdtool_1.5.4.bb +++ b/meta-oe/recipes-extended/rrdtool/rrdtool_1.5.4.bb | |||
@@ -117,8 +117,8 @@ RDEPENDS_${PN}-perl = "perl perl-module-lib perl-module-getopt-long perl-module- | |||
117 | 117 | ||
118 | DESCRIPTION_${PN}-python = \ | 118 | DESCRIPTION_${PN}-python = \ |
119 | "The ${PN}-python package includes RRDtool bindings for python." | 119 | "The ${PN}-python package includes RRDtool bindings for python." |
120 | FILES_${PN}-python = "${libdir}/python${PYTHON_BASEVERSION}/site-packages/*" | 120 | FILES_${PN}-python = "${nonarch_libdir}/python${PYTHON_BASEVERSION}/site-packages/*" |
121 | RDEPENDS_${PN}-python = "python" | 121 | RDEPENDS_${PN}-python = "python" |
122 | 122 | ||
123 | FILES_${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/RRDs/.debug \ | 123 | FILES_${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/RRDs/.debug \ |
124 | ${libdir}/python${PYTHON_BASEVERSION}/site-packages/.debug" | 124 | ${nonarch_libdir}/python${PYTHON_BASEVERSION}/site-packages/.debug" |