s4-python Remove unused missing.py (used by old build system)
authorAndrew Bartlett <abartlet@samba.org>
Tue, 1 Feb 2011 03:28:29 +0000 (14:28 +1100)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 2 Feb 2011 04:19:03 +0000 (15:19 +1100)
source4/scripting/python/samba_external/missing.py [deleted file]

diff --git a/source4/scripting/python/samba_external/missing.py b/source4/scripting/python/samba_external/missing.py
deleted file mode 100755 (executable)
index d63dbb6..0000000
+++ /dev/null
@@ -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)