mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 00:32:12 +02:00
Putting the locale and script files into the sysroot for use by their specific recipes used to be a simple way to share the files. With RSS, we don't want to copy these into many different recipes so put these files in their own sstate task. (From OE-Core rev: c283f2532851e2a65e08fe7b3fd71c5d9abb70f2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
549 B
PHP
21 lines
549 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_DIR}-components/${PACKAGE_ARCH}/glibc-stash-locale/scripts"
|
|
|
|
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"
|