mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
f858121d8f
This is the only way to resolve cirular dependencies with these libraries. I've tried several ways but this is the only way to do it correctly. In future we should try to seperate them by passing down information or making a more lightweight loadparm mechanism. +---------+ +-------------+ | | | | | param <---------+ +--------+ smbregistry | | | | | | | +----+----+ | | +------^------+ | +---+----v--+ | | | | | +----------> smbconf +------------+ | | +-----------+ Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Michael Adam <obnox@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
8 lines
229 B
Python
8 lines
229 B
Python
#!/usr/bin/env python
|
|
|
|
if bld.env.HAVE_FUSE:
|
|
bld.SAMBA_BINARY('smb2mount',
|
|
source='smb2mount.c clifuse.c',
|
|
deps='smbconf popt_samba3 libsmb fuse',
|
|
install=False)
|