summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/eglibc/eglibc-scripts.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/eglibc/eglibc-scripts.inc')
-rw-r--r--meta/recipes-core/eglibc/eglibc-scripts.inc17
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-scripts.inc b/meta/recipes-core/eglibc/eglibc-scripts.inc
new file mode 100644
index 0000000000..a020961f7f
--- /dev/null
+++ b/meta/recipes-core/eglibc/eglibc-scripts.inc
@@ -0,0 +1,17 @@
1include eglibc-collateral.inc
2
3SUMMARY = "utility scripts provided by eglibc"
4DESCRIPTION = "utility scripts provided by eglibc"
5RDEPENDS_${PN} = "bash"
6RDEPENDS_ldd = "bash"
7
8SRC = "${STAGING_INCDIR}/eglibc-scripts-internal-${MULTIMACH_TARGET_SYS}"
9
10bashscripts = "mtrace sotruss xtrace"
11
12do_install() {
13 install -d -m 0755 ${D}${bindir}
14 for i in ${bashscripts}; do
15 install -m 0755 ${SRC}/$i ${D}${bindir}/
16 done
17}