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:
9
source4/scripting/python/samba_external/wscript_build
Normal file
9
source4/scripting/python/samba_external/wscript_build
Normal 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')
|
Reference in New Issue
Block a user