mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

The path to where to install and find the sysroot components is used in many places. This warrants it to get its own variable. (From OE-Core rev: 70a84b525470f72339568409daf84845904e4cab) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
541 B
PHP
21 lines
541 B
PHP
require glibc-collateral.inc
|
|
|
|
SUMMARY = "utility scripts provided by glibc"
|
|
DESCRIPTION = "utility scripts provided by glibc"
|
|
RDEPENDS_${PN} = "bash glibc-mtrace"
|
|
|
|
SRC = "${COMPONENTS_DIR}/${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"
|