From: Chen Qi Date: Thu, 5 Mar 2015 08:06:03 +0000 (+0800) Subject: dbus-test: make do_install run to trigger the effect of cleandirs flag X-Git-Tag: yocto-4.0~26490 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e76f8c0d79301b3c67029f18e5dd4325a39d4587;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git dbus-test: make do_install run to trigger the effect of cleandirs flag For now, we would meet the following QA error if we build dbus-test in the same build directory with multilib enabled/disabled. The steps are as follows: 1. Enable multilib and `bitbake dbus-ptest' 2. Disable multilib and `bitbake dbus-ptest' The error message is as follows: ERROR: QA Issue: dbus-test: Files/directories were installed but not shipped /usr/lib64 /usr/lib64/dbus-test /usr/lib64/dbus-test/ptest /usr/lib64/dbus-test/ptest/run-ptest ... The problem is that the ${D} is not cleaned up at the second build while it should be. This patch fixes the above problem. Signed-off-by: Chen Qi Signed-off-by: Ross Burton --- diff --git a/meta/recipes-core/dbus/dbus-test_1.8.10.bb b/meta/recipes-core/dbus/dbus-test_1.8.10.bb index fb796fb6927..719c1f9621c 100644 --- a/meta/recipes-core/dbus/dbus-test_1.8.10.bb +++ b/meta/recipes-core/dbus/dbus-test_1.8.10.bb @@ -44,6 +44,7 @@ EXTRA_OECONF = "--enable-tests \ ${EXTRA_OECONF_X}" do_install() { + : } do_install_ptest() {