It is considered good practice to use the build system provided variables instead of directly specify hardcoded paths.
Signed-off-by: Javier Martinez Canillas <[email protected]> --- meta/recipes-devtools/ubootchart/ubootchart_svn.bb | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/meta/recipes-devtools/ubootchart/ubootchart_svn.bb b/meta/recipes-devtools/ubootchart/ubootchart_svn.bb index b49e94a..4787857 100644 --- a/meta/recipes-devtools/ubootchart/ubootchart_svn.bb +++ b/meta/recipes-devtools/ubootchart/ubootchart_svn.bb @@ -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 } -- 1.7.7.6 _______________________________________________ Openembedded-core mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
