summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Martinez Canillas <javier@dowhile0.org>2012-08-05 21:48:38 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-06 15:18:48 +0100
commit72d697e56f5e633699df553d79eda9504758631a (patch)
treec4e58f422f0b67ff3cbb2b1346d3353b43dfb730
parent781fe78e0decce343aee1741a5338f80fb65ce31 (diff)
downloadpoky-72d697e56f5e633699df553d79eda9504758631a.tar.gz
systemtap: use ${datadir} instead of /usr/share for packaging
It is considered good practice to use the build system provided variables instead of directly specify hardcoded paths. (From OE-Core rev: 095f9c056373a252c0ba2679d8e6f4ad932a958d) Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb b/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
index b328e6bac8..0cfcbe44ac 100644
--- a/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap-uprobes_git.bb
@@ -4,7 +4,7 @@ require systemtap_git.inc
4 4
5DEPENDS = "systemtap virtual/kernel" 5DEPENDS = "systemtap virtual/kernel"
6 6
7PR = "r0" 7PR = "r1"
8 8
9# On systems without CONFIG_UTRACE, this package is empty. 9# On systems without CONFIG_UTRACE, this package is empty.
10ALLOW_EMPTY_${PN} = "1" 10ALLOW_EMPTY_${PN} = "1"
@@ -36,7 +36,7 @@ do_compile() {
36do_install() { 36do_install() {
37 if [ -e "${S}/runtime/uprobes/uprobes.ko" ] 37 if [ -e "${S}/runtime/uprobes/uprobes.ko" ]
38 then 38 then
39 install -d ${D}/usr/share/systemtap/runtime/uprobes/ 39 install -d ${D}${datadir}/systemtap/runtime/uprobes/
40 install -m 0644 ${S}/runtime/uprobes/uprobes.ko ${D}/usr/share/systemtap/runtime/uprobes/ 40 install -m 0644 ${S}/runtime/uprobes/uprobes.ko ${D}${datadir}/systemtap/runtime/uprobes/
41 fi 41 fi
42} 42}