| Submitter | Javier Martinez Canillas |
|---|---|
| Date | Aug. 5, 2012, 3:54 p.m. |
| Message ID | <1344182057-15981-16-git-send-email-javier@dowhile0.org> |
| Download | mbox | patch |
| Permalink | /patch/33865/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/meta/recipes-extended/at/at_3.1.13.bb b/meta/recipes-extended/at/at_3.1.13.bb index 9af3569..1afcda2 100644 --- a/meta/recipes-extended/at/at_3.1.13.bb +++ b/meta/recipes-extended/at/at_3.1.13.bb @@ -51,8 +51,8 @@ do_install () { install -d ${D}${sysconfdir}/rcS.d install -m 0755 ${WORKDIR}/S99at ${D}${sysconfdir}/init.d/atd ln -sf ../init.d/atd ${D}${sysconfdir}/rcS.d/S99at - cp -r ${D}/usr/doc/at ${D}${docdir}/ - rm -rf ${D}/usr/doc + cp -r ${D}${prefix}/doc/at ${D}${docdir}/ + rm -rf ${D}${prefix}/doc for feature in ${DISTRO_FEATURES}; do if [ "$feature" = "pam" ]; then
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-extended/at/at_3.1.13.bb | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)