remove wscript from python/

This commit is contained in:
Frank Zhang 2010-12-04 22:16:59 -08:00
parent 5765a56b3f
commit 1017a41fa9
3 changed files with 3 additions and 4 deletions

View File

@ -1,2 +0,0 @@
obj = bld(features = 'py',name='pythonmodules')
obj.find_sources_in_dirs('lib', exts=['.py'])

View File

@ -1 +0,0 @@
bld.substitute('**',"${AGENTLIBDIR}/scripts",chmod=0755)

View File

@ -87,7 +87,9 @@ tgen = bld(rule=Utils.runant, name='runant', source=ant_sources, target=ant_jars
# =================== C / Python compilation =========================
bld.recurse(["daemonize","python"],'build')
bld.recurse(["daemonize"],'build')
obj = bld(features = 'py',name='pythonmodules')
obj.find_sources_in_dirs('python/lib', exts=['.py'])
# ===================== End C / Python compilation ==========================