From: Gustavo Zacarias Date: Mon, 31 Mar 2014 17:28:10 +0000 (-0300) Subject: rsync: make acl support non-random X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c0f662173e77b6e323cf75948d6d315274b9f5d6;p=buildroot.git 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: Gustavo Zacarias Signed-off-by: Thomas Petazzoni --- diff --git a/package/rsync/rsync.mk b/package/rsync/rsync.mk index 35f128c97e..d0ceaa99ac 100644 --- a/package/rsync/rsync.mk +++ b/package/rsync/rsync.mk @@ -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))