summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/ubootchart
diff options
context:
space:
mode:
authorJavier Martinez Canillas <javier@dowhile0.org>2012-08-05 21:48:36 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-06 15:18:48 +0100
commit0334d47ae5301502267ae3f75b5ff2d5a3a414e6 (patch)
tree0b655720d4dae8d9d221d8d67f926e8d07bd1353 /meta/recipes-devtools/ubootchart
parent84728a1e8f7dbccc36e883dd5bed72f21f727d8e (diff)
downloadast2050-yocto-poky-0334d47ae5301502267ae3f75b5ff2d5a3a414e6.zip
ast2050-yocto-poky-0334d47ae5301502267ae3f75b5ff2d5a3a414e6.tar.gz
ubootchart: use variables instead of hardcoded paths
It is considered good practice to use the build system provided variables instead of directly specify hardcoded paths. (From OE-Core rev: 73ee5587a46751ed39a181b3ff2a12d4a3086c21) Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/ubootchart')
-rw-r--r--meta/recipes-devtools/ubootchart/ubootchart_svn.bb18
1 files changed, 9 insertions, 9 deletions
diff --git a/meta/recipes-devtools/ubootchart/ubootchart_svn.bb b/meta/recipes-devtools/ubootchart/ubootchart_svn.bb
index b49e94a..843024c 100644
--- a/meta/recipes-devtools/ubootchart/ubootchart_svn.bb
+++ b/meta/recipes-devtools/ubootchart/ubootchart_svn.bb
@@ -4,7 +4,7 @@ LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=8f0e2cd40e05189ec81232da84bd6e1a"
SRCREV = "12"
PV = "0.0+r${SRCPV}"
-PR = "r5"
+PR = "r6"
#RRECOMMENDS_${PN} = "acct"
@@ -27,13 +27,13 @@ do_compile() {
}
do_install() {
- install -m 0755 -d ${D}/sbin ${D}/etc/ubootchart ${D}/usr/share/applications
- install -m 0755 ${S}/ubootchartd_bin ${D}/sbin
- install -m 0755 ${S}/ubootchartd ${D}/sbin
- install -m 0644 ${S}/ubootchart.conf ${D}/etc/ubootchart
- install -m 0755 ${S}/start.sh ${D}/etc/ubootchart
- install -m 0755 ${S}/finish.sh ${D}/etc/ubootchart
+ install -m 0755 -d ${D}${base_sbindir} ${D}${sysconfdir}/ubootchart ${D}${datadir}/applications
+ install -m 0755 ${S}/ubootchartd_bin ${D}${base_sbindir}
+ install -m 0755 ${S}/ubootchartd ${D}${base_sbindir}
+ install -m 0644 ${S}/ubootchart.conf ${D}${sysconfdir}/ubootchart
+ install -m 0755 ${S}/start.sh ${D}${sysconfdir}/ubootchart
+ install -m 0755 ${S}/finish.sh ${D}${sysconfdir}/ubootchart
- install -m 0755 ${WORKDIR}/ubootchart-stop ${D}/sbin
- install -m 0644 ${WORKDIR}/ubootchart.desktop ${D}/usr/share/applications
+ install -m 0755 ${WORKDIR}/ubootchart-stop ${D}${base_sbindir}
+ install -m 0644 ${WORKDIR}/ubootchart.desktop ${D}${datadir}/applications
}
OpenPOWER on IntegriCloud