fcb2135e278a4457684a6a98b91657fa2221c624
[samba.git] / source4 / scripting / python / samba_external / wscript_build
1 # work out what external modules need to be installed
2 external_list = []
3 try:
4     import dns.resolver
5 except:
6     external_list.append("dnspython")
7
8 for e in external_list:
9     bld.INSTALL_WILDCARD('${PYTHONDIR}/samba_external', e + '/**/*', flat=False, exclude='*.pyc')