s4-waf: mark the wscript files as python so vim/emacs knows how to highlight them
[samba.git] / source4 / scripting / python / samba_external / wscript_build
1 #!/usr/bin/env python
2
3 # work out what external modules need to be installed
4 external_list = []
5 try:
6     import dns.resolver
7 except:
8     external_list.append("dnspython")
9
10 for e in external_list:
11     bld.INSTALL_WILDCARD('${PYTHONDIR}/samba_external', e + '/**/*', flat=False, exclude='*.pyc')