| Submitter | Javier Martinez Canillas |
|---|---|
| Date | Aug. 5, 2012, 3:54 p.m. |
| Message ID | <1344182057-15981-27-git-send-email-javier@dowhile0.org> |
| Download | mbox | patch |
| Permalink | /patch/33887/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/meta/recipes-bsp/usbinit/usbinit.bb b/meta/recipes-bsp/usbinit/usbinit.bb index e2a036e..5baa49a 100644 --- a/meta/recipes-bsp/usbinit/usbinit.bb +++ b/meta/recipes-bsp/usbinit/usbinit.bb @@ -10,9 +10,9 @@ SRC_URI = "file://usb-gether \ S = "${WORKDIR}" do_install() { - install -d ${D}/etc - install -d ${D}/etc/init.d - install usb-gether ${D}/etc/init.d + install -d ${D}${sysconfdir} + install -d ${D}${sysconfdir}/init.d + install usb-gether ${D}${sysconfdir}/init.d } inherit update-rc.d allarch
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@dowhile0.org> --- meta/recipes-bsp/usbinit/usbinit.bb | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)