From: Chen Qi Date: Fri, 5 Jun 2020 02:09:45 +0000 (+0800) Subject: db: do not install db_verify if 'verify' is not enabled X-Git-Tag: 2020-04.2-dunfell~140 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b45f1a3b8007ab34dcbe0cba365823da179d0c50;p=openembedded-core.git db: do not install db_verify if 'verify' is not enabled On target, when running `db_verify /var/lib/rpm/Packages', we get the following error. db_verify: BDB0571 library build did not include support for database verification This is because db_verify is installed but 'verify' PACKAGECONFIG is not enabled. So fix it by not installing do_verify in such case. Signed-off-by: Chen Qi Signed-off-by: Richard Purdie (cherry picked from commit b5ffdb296f211403f987b5d5a724a94ee91dc80c) Signed-off-by: Steve Sakoman --- diff --git a/meta/recipes-support/db/db_5.3.28.bb b/meta/recipes-support/db/db_5.3.28.bb index 3a0923ae36..318efcb61d 100644 --- a/meta/recipes-support/db/db_5.3.28.bb +++ b/meta/recipes-support/db/db_5.3.28.bb @@ -109,6 +109,9 @@ do_install_append() { fi chown -R root:root ${D} + if ${@bb.utils.contains('PACKAGECONFIG', 'verify', 'false', 'true', d)}; then + rm -f ${D}${bindir}/db_verify + fi } INSANE_SKIP_${PN} = "dev-so"