summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/rsync
diff options
context:
space:
mode:
authorAndré Draszik <git@andred.net>2015-07-24 13:48:44 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-31 10:32:37 +0100
commit890f24a7f254774929712eeb3c53a6a2430f7edb (patch)
treec40d37dc6e6885933df9d3370e98c96be110be00 /meta/recipes-devtools/rsync
parent856082cf0baec608e099462422fc2ef6724acc7f (diff)
downloadpoky-890f24a7f254774929712eeb3c53a6a2430f7edb.tar.gz
rsync: use ${sysconfdir} instead of hardcoding /etc
(From OE-Core rev: 3bf20e3a67099f54a20c6534fea5db169c63dbec) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rsync')
-rw-r--r--meta/recipes-devtools/rsync/rsync.inc4
1 files changed, 2 insertions, 2 deletions
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 \
16inherit autotools 16inherit autotools
17 17
18do_install_append() { 18do_install_append() {
19 install -d ${D}/etc 19 install -d ${D}${sysconfdir}
20 install -m 0644 ${WORKDIR}/rsyncd.conf ${D}/etc 20 install -m 0644 ${WORKDIR}/rsyncd.conf ${D}${sysconfdir}
21} 21}
22 22
23EXTRA_OEMAKE='STRIP=""' 23EXTRA_OEMAKE='STRIP=""'