[oe-commits] Javier Martinez Canillas : qemu-config: use ${sysconfdir} instead of / etc for packaging

git at git.openembedded.org git at git.openembedded.org
Mon Aug 6 14:22:47 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: 998b94adbbc0f0f036c5816fbf6ee594dba90c1c
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=998b94adbbc0f0f036c5816fbf6ee594dba90c1c

Author: Javier Martinez Canillas <javier at dowhile0.org>
Date:   Sun Aug  5 21:48:53 2012 +0200

qemu-config: use ${sysconfdir} instead of /etc for packaging

It is considered good practice to use the build system provided
variables instead of directly specify hardcoded paths.

Signed-off-by: Javier Martinez Canillas <javier at dowhile0.org>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-bsp/qemu-config/qemu-config.bb |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-bsp/qemu-config/qemu-config.bb b/meta/recipes-bsp/qemu-config/qemu-config.bb
index 56ee465..8305f3a 100644
--- a/meta/recipes-bsp/qemu-config/qemu-config.bb
+++ b/meta/recipes-bsp/qemu-config/qemu-config.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa
 
 COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemumips|qemuppc)"
 
-PR = "r24"
+PR = "r25"
 
 SRC_URI = "file://distcc.sh \
            file://anjuta-remote-run \
@@ -28,8 +28,8 @@ do_install() {
     install -d ${D}${datadir}/applications
     install -m 0644 shutdown.desktop ${D}${datadir}/applications/
 
-    install -d ${D}/etc/init.d
-    install qemu-autostart ${D}/etc/init.d/
+    install -d ${D}${sysconfdir}/init.d
+    install qemu-autostart ${D}${sysconfdir}/init.d/
 }
 
 pkg_postinst_${PN} () {





More information about the Openembedded-commits mailing list