rsync: 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.

(From OE-Core rev: bc45d990938c1b1d761cee6e90464d22f854a2ab)

Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Javier Martinez Canillas 2012-08-05 21:48:54 +02:00 committed by Richard Purdie
parent ed9fc6fa51
commit cb8f3828f4
1 changed files with 3 additions and 3 deletions

View File

@ -13,8 +13,8 @@ SRC_URI = "http://rsync.samba.org/ftp/rsync/src/rsync-${PV}.tar.gz \
inherit autotools
do_install_append() {
install -d ${D}/etc
install -m 0644 ${WORKDIR}/rsyncd.conf ${D}/etc
install -d ${D}${sysconfdir}
install -m 0644 ${WORKDIR}/rsyncd.conf ${D}${sysconfdir}
}
EXTRA_OEMAKE='STRIP=""'
@ -22,4 +22,4 @@ EXTRA_OEMAKE='STRIP=""'
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=6d5a9d4c4d3af25cd68fd83e8a8cb09c"
PR = "r3"
PR = "r4"