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

s4-python Remove unused missing.py (used by old build system)

This commit is contained in:
Andrew Bartlett
2011-02-01 14:28:29 +11:00
parent eab493b7ea
commit 5d4dc6cbd5

View File

@ -1,17 +0,0 @@
#!/usr/bin/env python
# work out what python external libraries we need to install
external_libs = {
"dns.resolver": "dnspython/dns",
"subunit": "subunit/python/subunit",
"testtools": "testtools/testtools"}
list = []
for module, package in external_libs.iteritems():
try:
__import__(module)
except ImportError:
list.append(package)
print ' '.join(list)