diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2018-09-18 00:05:12 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2018-09-17 22:23:29 -0700 |
| commit | d82aaf707e6f664b578ef74b9600683a6568669f (patch) | |
| tree | 604ab483514bb16d2ec56739e58930c1d15185ae | |
| parent | 875d70f78182d0bdd8a1985ac08e05259551f6fe (diff) | |
| download | meta-openembedded-d82aaf707e6f664b578ef74b9600683a6568669f.tar.gz | |
libtdb: split one dpg package
Multiple -dbg packages per recipe is not encouraged, and only one is
recommended and the code only works properly in some cases for one.
Add RPROVIDES_${PN}-dbg to be compatiable with previous dbg packages
requiring.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-networking/recipes-support/libtdb/libtdb_1.3.16.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-networking/recipes-support/libtdb/libtdb_1.3.16.bb b/meta-networking/recipes-support/libtdb/libtdb_1.3.16.bb index 112e89ea03..0579ed6e3b 100644 --- a/meta-networking/recipes-support/libtdb/libtdb_1.3.16.bb +++ b/meta-networking/recipes-support/libtdb/libtdb_1.3.16.bb | |||
| @@ -35,10 +35,11 @@ EXTRA_OECONF += "--disable-rpath \ | |||
| 35 | --with-libiconv=${STAGING_DIR_HOST}${prefix}\ | 35 | --with-libiconv=${STAGING_DIR_HOST}${prefix}\ |
| 36 | " | 36 | " |
| 37 | 37 | ||
| 38 | PACKAGES += "tdb-tools python-tdb python-tdb-dbg" | 38 | PACKAGES += "tdb-tools python-tdb" |
| 39 | |||
| 40 | RPROVIDES_${PN}-dbg += "python-tdb-dbg" | ||
| 39 | 41 | ||
| 40 | FILES_${PN} = "${libdir}/*.so.*" | 42 | FILES_${PN} = "${libdir}/*.so.*" |
| 41 | FILES_tdb-tools = "${bindir}/*" | 43 | FILES_tdb-tools = "${bindir}/*" |
| 42 | FILES_python-tdb = "${libdir}/python${PYTHON_BASEVERSION}/site-packages/*" | 44 | FILES_python-tdb = "${libdir}/python${PYTHON_BASEVERSION}/site-packages/*" |
| 43 | FILES_python-tdb-dbg = "${libdir}/python${PYTHON_BASEVERSION}/site-packages/.debug/*" | ||
| 44 | RDEPENDS_python-tdb = "python" | 45 | RDEPENDS_python-tdb = "python" |
