mirror of
https://git.yoctoproject.org/poky
synced 2026-04-22 15:32:14 +02:00
dbus-test: install executables not libtool wrapper scripts
All of the binaries are linked with libtool now, so install the binaries and not the wrapper scripts. Also remove dbus-1.init from SRC_URI as dbus-test doesn't use it. [ YOCTO #9528 ] (From OE-Core rev: a4b5076b2c06cafff0ce764955d0aa7c334c7a8e) (From OE-Core rev: b4db000519da45cc4e911a43dedaa5bd20a8624e) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
83731d04b3
commit
ff5b6b7eb1
@@ -12,7 +12,6 @@ RDEPENDS_${PN}-dev = ""
|
||||
|
||||
SRC_URI = "http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \
|
||||
file://tmpdir.patch \
|
||||
file://dbus-1.init \
|
||||
file://run-ptest \
|
||||
file://python-config.patch \
|
||||
file://clear-guid_from_server-if-send_negotiate_unix_f.patch \
|
||||
@@ -49,13 +48,11 @@ do_install() {
|
||||
|
||||
do_install_ptest() {
|
||||
install -d ${D}${PTEST_PATH}/test
|
||||
case1="shell printf refs syslog"
|
||||
for i in ${case1}; do install ${B}/test/test-$i ${D}${PTEST_PATH}/test; done
|
||||
case2="marshal syntax corrupt dbus-daemon dbus-daemon-eavesdrop loopback relay"
|
||||
for i in ${case2}; do install ${B}/test/.libs/test-$i ${D}${PTEST_PATH}/test; done
|
||||
case3="bus bus-system bus-launch-helper"
|
||||
for i in ${case3}; do install ${B}/bus/test-$i ${D}${PTEST_PATH}/test; done
|
||||
install ${B}/dbus/test-dbus ${D}${PTEST_PATH}/test
|
||||
l="shell printf refs syslog marshal syntax corrupt dbus-daemon dbus-daemon-eavesdrop loopback relay"
|
||||
for i in $l; do install ${B}/test/.libs/test-$i ${D}${PTEST_PATH}/test; done
|
||||
l="bus bus-system bus-launch-helper"
|
||||
for i in $l; do install ${B}/bus/.libs/test-$i ${D}${PTEST_PATH}/test; done
|
||||
install ${B}/dbus/.libs/test-dbus ${D}${PTEST_PATH}/test
|
||||
cp -r ${B}/test/data ${D}${PTEST_PATH}/test
|
||||
}
|
||||
RDEPENDS_${PN}-ptest += "bash"
|
||||
|
||||
Reference in New Issue
Block a user