Commit c0f66217 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Thomas Petazzoni
Browse files

rsync: make acl support non-random



If acl is selected then add it to dependencies so it can be used by
rsync in a predictable fashion.
Extended attributes are handled directly via linux, there's no need
for the xattr package/library.

Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent c40950b3
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -14,4 +14,10 @@ RSYNC_CONF_OPT = \
	--with-included-zlib=no \
	--with-included-popt=no

ifeq ($(BR2_PACKAGE_ACL),y)
	RSYNC_DEPENDENCIES += acl
else
	RSYNC_CONF_OPT += --disable-acl-support
endif

$(eval $(autotools-package))