lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit eb374e2d4d9eb816508b6913befee688cf974f9d
parent 36fa51e6bacb275fd3ffe8327466b1ce703c14b1
Author: Daniel Dickinson <lede@cshore.thecshore.com>
Date:   Tue, 10 Jan 2017 16:26:10 -0500

net/rsync: Make using ACL/XATTR the default if it's core default

Core has an option to enable ACL/XATTR by default;
if that is set default rsync to use it.

Signed-off-by: Daniel Dickinson <lede@cshore.thecshore.com>

Diffstat:
Mnet/rsync/Config.in | 2++
Mnet/rsync/Makefile | 2+-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/net/rsync/Config.in b/net/rsync/Config.in @@ -3,11 +3,13 @@ if PACKAGE_rsync config RSYNC_xattr bool prompt "Enable xattr support" + default y if USE_FS_ACL_ATTR default n config RSYNC_acl bool prompt "Enable ACL support" + default y if USE_FS_ACL_ATTR default n config RSYNC_zlib diff --git a/net/rsync/Makefile b/net/rsync/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=rsync PKG_VERSION:=3.1.2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://rsync.samba.org/ftp/rsync/src