mirror of
https://git.yoctoproject.org/poky
synced 2026-06-12 04:53:49 +02:00
If the file is expected to exist, then we should always be using require so that if it doesn't we get an error rather than some other more obscure failure later on. (From OE-Core rev: 603ae6eb487489e65da69c68e532cb767ccc1fc2) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
545 B
PHP
21 lines
545 B
PHP
require glibc-collateral.inc
|
|
|
|
SUMMARY = "utility scripts provided by glibc"
|
|
DESCRIPTION = "utility scripts provided by glibc"
|
|
RDEPENDS_${PN} = "bash glibc-mtrace"
|
|
|
|
SRC = "${STAGING_INCDIR}/glibc-scripts-internal-${MULTIMACH_TARGET_SYS}"
|
|
|
|
bashscripts = "sotruss xtrace"
|
|
|
|
do_install() {
|
|
install -d -m 0755 ${D}${bindir}
|
|
for i in ${bashscripts}; do
|
|
install -m 0755 ${SRC}/$i ${D}${bindir}/
|
|
done
|
|
}
|
|
|
|
# sotruss script requires sotruss-lib.so (given by libsotruss package),
|
|
# to produce trace of the library calls.
|
|
RDEPENDS_${PN} += "libsotruss"
|