net/rsync: Make using ACL/XATTR the default if it's core default
authorDaniel Dickinson <redacted>
Tue, 10 Jan 2017 21:26:10 +0000 (16:26 -0500)
committerDaniel Dickinson <redacted>
Tue, 10 Jan 2017 21:26:10 +0000 (16:26 -0500)
Core has an option to enable ACL/XATTR by default;
if that is set default rsync to use it.

Signed-off-by: Daniel Dickinson <redacted>
net/rsync/Config.in
net/rsync/Makefile

index dfbfdf16c9ae40f45887a3e092b3411e7c28792a..ea1c594510004a29df6bf773510d5371e29b3418 100644 (file)
@@ -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
index f9fa04758c39c1f74cca5385ebe75b2d0be7277d..161b25bff144cbafaac18c9ca55ef0964efd9402 100644 (file)
@@ -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
git clone https://git.99rst.org/PROJECT