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>
14 lines
348 B
PHP
14 lines
348 B
PHP
require glibc-collateral.inc
|
|
|
|
SUMMARY = "mtrace utility provided by glibc"
|
|
DESCRIPTION = "mtrace utility provided by glibc"
|
|
RDEPENDS_${PN} = "perl"
|
|
RPROVIDES_${PN} = "libc-mtrace"
|
|
|
|
SRC = "${COMPONENTS_DIR}/${PACKAGE_ARCH}/glibc-stash-locale/scripts"
|
|
|
|
do_install() {
|
|
install -d -m 0755 ${D}${bindir}
|
|
install -m 0755 ${SRC}/mtrace ${D}${bindir}/
|
|
}
|