From: Thomas Petazzoni Date: Sun, 4 Nov 2012 07:34:17 +0000 (+0000) Subject: samba: unconditionally enable --with-sys-quotas X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f2b3a19896b83da34e5ee8a30572dc846141f0cb;p=buildroot.git samba: unconditionally enable --with-sys-quotas Contrary to what was written in samba.mk, the sys-quotas option apparently does not depend on RPC support in the toolchain: Samba builds perfectly fine on an uClibc toolchain without RPC support with sys-quotas enabled. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/package/samba/samba.mk b/package/samba/samba.mk index dec60d0dc4..4f8791767b 100644 --- a/package/samba/samba.mk +++ b/package/samba/samba.mk @@ -51,7 +51,7 @@ SAMBA_CONF_OPT = \ \ --without-cluster-support \ --without-dnsupdate \ - $(if $(BR2_TOOLCHAIN_HAS_NATIVE_RPC),--with-sys-quotas,--without-sys-quotas) \ + --with-sys-quotas \ --without-ads \ --without-ldap \ --with-included-iniparser \