diff options
author | Javier Martinez Canillas <javier@dowhile0.org> | 2012-08-05 21:48:54 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-06 14:38:58 +0100 |
commit | bc45d990938c1b1d761cee6e90464d22f854a2ab (patch) | |
tree | 111dd9ff45f719379a52d9c79ffb6543e68d6a55 /meta/recipes-devtools/rsync | |
parent | e044be34601dcc8eeca7f96d628964bebf562e2e (diff) | |
download | openembedded-core-contrib-bc45d990938c1b1d761cee6e90464d22f854a2ab.tar.gz |
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.
Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/rsync')
-rw-r--r-- | meta/recipes-devtools/rsync/rsync_2.6.9.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-devtools/rsync/rsync_2.6.9.bb b/meta/recipes-devtools/rsync/rsync_2.6.9.bb index 74d10e4ac57..54feadad712 100644 --- a/meta/recipes-devtools/rsync/rsync_2.6.9.bb +++ b/meta/recipes-devtools/rsync/rsync_2.6.9.bb @@ -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" |