mirror of
https://git.yoctoproject.org/poky
synced 2026-03-03 13:59:40 +01: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>
18 lines
419 B
PHP
18 lines
419 B
PHP
include eglibc-collateral.inc
|
|
|
|
SUMMARY = "utility scripts provided by eglibc"
|
|
DESCRIPTION = "utility scripts provided by eglibc"
|
|
RDEPENDS_${PN} = "bash"
|
|
RDEPENDS_ldd = "bash"
|
|
|
|
SRC = "${STAGING_INCDIR}/eglibc-scripts-internal-${MULTIMACH_TARGET_SYS}"
|
|
|
|
bashscripts = "mtrace sotruss xtrace"
|
|
|
|
do_install() {
|
|
install -d -m 0755 ${D}${bindir}
|
|
for i in ${bashscripts}; do
|
|
install -m 0755 ${SRC}/$i ${D}${bindir}/
|
|
done
|
|
}
|