From 6c9d66b16f52db6cabe6c1ce4247b31bb058ccfc Mon Sep 17 00:00:00 2001 From: Javier Martinez Canillas Date: Sun, 5 Aug 2012 21:48:46 +0200 Subject: openssh: use ${localstatedir} instead of /var for packaging It is considered good practice to use the build system provided variables instead of directly specify hardcoded paths. (From OE-Core rev: b7134e8f76026d15a5e35c6a2e5d77d5e48c2787) Signed-off-by: Javier Martinez Canillas Signed-off-by: Richard Purdie --- meta/recipes-connectivity/openssh/openssh_6.0p1.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-connectivity/openssh/openssh_6.0p1.bb b/meta/recipes-connectivity/openssh/openssh_6.0p1.bb index 376023c635..8757f82b31 100644 --- a/meta/recipes-connectivity/openssh/openssh_6.0p1.bb +++ b/meta/recipes-connectivity/openssh/openssh_6.0p1.bb @@ -7,7 +7,7 @@ SECTION = "console/network" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://LICENCE;md5=e326045657e842541d3f35aada442507" -PR = "r2" +PR = "r3" DEPENDS = "zlib openssl" DEPENDS += "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" @@ -78,7 +78,7 @@ do_install_append () { install -d ${D}${sysconfdir}/init.d install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/sshd rm -f ${D}${bindir}/slogin ${D}${datadir}/Ssh.bin - rmdir ${D}/var/run/sshd ${D}/var/run ${D}/var + rmdir ${D}${localstatedir}/run/sshd ${D}${localstatedir}/run ${D}${localstatedir} } ALLOW_EMPTY_${PN} = "1" -- cgit v1.2.3-54-g00ecf