diff options
Diffstat (limited to 'source4/scripting/python/samba_external/wscript_build')
-rw-r--r-- | source4/scripting/python/samba_external/wscript_build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/scripting/python/samba_external/wscript_build b/source4/scripting/python/samba_external/wscript_build new file mode 100644 index 0000000000..fcb2135e27 --- /dev/null +++ b/source4/scripting/python/samba_external/wscript_build @@ -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') |