diff options
author | André Draszik <git@andred.net> | 2015-07-24 13:48:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-31 10:32:37 +0100 |
commit | 890f24a7f254774929712eeb3c53a6a2430f7edb (patch) | |
tree | c40d37dc6e6885933df9d3370e98c96be110be00 /meta | |
parent | 856082cf0baec608e099462422fc2ef6724acc7f (diff) | |
download | poky-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')
-rw-r--r-- | meta/recipes-devtools/rsync/rsync.inc | 4 |
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 \ | |||
16 | inherit autotools | 16 | inherit autotools |
17 | 17 | ||
18 | do_install_append() { | 18 | do_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 | ||
23 | EXTRA_OEMAKE='STRIP=""' | 23 | EXTRA_OEMAKE='STRIP=""' |