From 34451d4449262a01f3e1ea1fd2f592733bab63e0 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Mon, 3 Feb 2014 14:05:04 +0100 Subject: [PATCH] samba: fixed to only enable ACL support if the acl package is effectively installed --- network/samba/samba.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/network/samba/samba.conf b/network/samba/samba.conf index dfcf894f3..09aef14c7 100644 --- a/network/samba/samba.conf +++ b/network/samba/samba.conf @@ -47,7 +47,9 @@ var_append extraconfopt ' ' "--with-piddir=$localstatedir/run/$pkg" var_append extraconfopt ' ' "--with-libsmbclient" # Windows NT/2000/XP ACL support (needs POSIX ACL support on the host) -var_append extraconfopt ' ' "--with-acl-support" +if pkginstalled -f acl; then + var_append extraconfopt ' ' "--with-acl-support" +fi # support for the automounter var_append extraconfopt ' ' "--with-automount"