mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 21:32:13 +02:00
This removes the dependency of eglibc.bb itself on perl and bash which, in turn, eliminates the need to build those two recipes if the scripts which need them are not going to be installed. Also provide dummy do_evacuate_scripts() for all variants of eglibc-initial otherwise the nativesdk and multilib variants might crash trying to copy a non-existent mtrace script. (From OE-Core rev: 74b5f8943b2b29c7b3b62be7d81fb2b3a86b9584) Signed-off-by: Phil Blundell <pb@pbcl.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
366 B
PHP
15 lines
366 B
PHP
include eglibc-collateral.inc
|
|
|
|
PR = "r1"
|
|
SUMMARY = "mtrace utility provided by eglibc"
|
|
DESCRIPTION = "mtrace utility provided by eglibc"
|
|
RDEPENDS_${PN} = "perl"
|
|
RPROVIDES_${PN} = "libc-mtrace"
|
|
|
|
SRC = "${STAGING_INCDIR}/eglibc-scripts-internal-${MULTIMACH_TARGET_SYS}"
|
|
|
|
do_install() {
|
|
install -d -m 0755 ${D}${bindir}
|
|
install -m 0755 ${SRC}/mtrace ${D}${bindir}/
|
|
}
|