1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

s4-waf: install the rest of our python files

This commit is contained in:
Andrew Tridgell
2010-03-27 15:12:56 +11:00
parent 85a11c4fb7
commit bd7bf0e1a9
5 changed files with 20 additions and 8 deletions

View File

@ -0,0 +1,9 @@
# work out what external modules need to be installed
external_list = []
try:
import dns.resolver
except:
external_list.append("dnspython")
for e in external_list:
bld.INSTALL_WILDCARD('${PYTHONDIR}/samba_external', e + '/**/*', flat=False, exclude='*.pyc')