From: André Draszik Date: Fri, 24 Jul 2015 12:48:44 +0000 (+0100) Subject: rsync: use ${sysconfdir} instead of hardcoding /etc X-Git-Tag: 2015-10~1063 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3bf20e3a67099f54a20c6534fea5db169c63dbec;p=openembedded-core.git rsync: use ${sysconfdir} instead of hardcoding /etc Signed-off-by: Ross Burton --- diff --git a/meta/recipes-devtools/rsync/rsync.inc b/meta/recipes-devtools/rsync/rsync.inc index 4223c590f9..c65f270312 100644 --- a/meta/recipes-devtools/rsync/rsync.inc +++ b/meta/recipes-devtools/rsync/rsync.inc @@ -16,8 +16,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=""'