commit b4f0cdedcfc9d5606450314a8c98bdf123096b2f
parent 13316fd67fdf4a484302400fa9096aa1a88a873a
Author: Ted Hess <thess@kitschensync.net>
Date: Tue, 17 Jan 2017 09:09:31 -0500
Merge pull request #3472 from cshore-firmware/pull-request-rsync-acl-options
net/rsync: Make using ACL/XATTR the default if it's core default
Diffstat:
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