s3-waf: Fix global includes to fix waf configure --help output
authorKai Blin <kai@samba.org>
Fri, 23 Apr 2010 06:59:43 +0000 (08:59 +0200)
committerKai Blin <kai@samba.org>
Thu, 20 May 2010 20:16:14 +0000 (22:16 +0200)
source3/wscript

index 3779463100a74f8532e4f3e048271d200f6a7172..5bbf377fd9b19e9d551dab9d2fe9d095102447b6 100644 (file)
@@ -8,8 +8,8 @@ from optparse import SUPPRESS_HELP
 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
 import wafsamba, Options
 import build.charset
-from samba_utils import *
-from samba3 import *
+import samba_utils
+import samba3
 
 def set_options(opt):
     opt.BUILTIN_DEFAULT('NONE')
@@ -46,6 +46,8 @@ def set_options(opt):
 
 
 def configure(conf):
+    from samba_utils import TO_LIST
+
     conf.define('PACKAGE_NAME', 'Samba')
     conf.define('PACKAGE_STRING', 'Samba 3')
     conf.define('PACKAGE_TARNAME', 'samba')