From c0f662173e77b6e323cf75948d6d315274b9f5d6 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Mon, 31 Mar 2014 14:28:10 -0300 Subject: [PATCH] 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 --- package/rsync/rsync.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package/rsync/rsync.mk b/package/rsync/rsync.mk index 35f128c97..d0ceaa99a 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))