diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2015-03-05 16:06:03 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-20 23:55:59 +0000 |
commit | 8457e134a22c9a63bdc6b629a27f0978a7a9bd6e (patch) | |
tree | e36052184872013bb03e1d604184c6a8e6e6306a | |
parent | 6ecc4683318810b5f839e4135edfbee2888d9f59 (diff) | |
download | poky-8457e134a22c9a63bdc6b629a27f0978a7a9bd6e.tar.gz |
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.
(From OE-Core rev: e76f8c0d79301b3c67029f18e5dd4325a39d4587)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/dbus/dbus-test_1.8.10.bb | 1 |
1 files changed, 1 insertions, 0 deletions
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 fb796fb692..719c1f9621 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 \ | |||
44 | ${EXTRA_OECONF_X}" | 44 | ${EXTRA_OECONF_X}" |
45 | 45 | ||
46 | do_install() { | 46 | do_install() { |
47 | : | ||
47 | } | 48 | } |
48 | 49 | ||
49 | do_install_ptest() { | 50 | do_install_ptest() { |