Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from Jan 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions net/rsync/Config.in
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion net/rsync/Makefile
Expand Up @@ -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
Expand Down