diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-11-04 07:34:17 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-06 08:20:17 +0100 |
commit | f2b3a19896b83da34e5ee8a30572dc846141f0cb (patch) | |
tree | 1db11a1e5cb2accbd774ae82cb623b2000ee8356 /package | |
parent | c5fc090f562af3a6afe8f83070abb74bb27a3d84 (diff) | |
download | buildroot-novena-f2b3a19896b83da34e5ee8a30572dc846141f0cb.tar.gz buildroot-novena-f2b3a19896b83da34e5ee8a30572dc846141f0cb.zip |
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 <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/samba/samba.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/samba/samba.mk b/package/samba/samba.mk index dec60d0dc..4f8791767 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 \ |