- fixed build issue on Solaris (wrong compilation flags for multi-threading)

- fixed build issue on Linux redhat 3: python does not has tarfile module
This commit is contained in:
Baptiste Lepilleur
2009-11-19 13:05:54 +00:00
parent bf95d0f619
commit 86ccb76138
4 changed files with 48 additions and 35 deletions

View File

@@ -167,12 +167,13 @@ def generate(env):
## scan_check = DoxySourceScanCheck,
## )
srcdist_builder = targz.makeBuilder( srcDistEmitter )
if targz.exists(env):
srcdist_builder = targz.makeBuilder( srcDistEmitter )
env['BUILDERS']['SrcDist'] = srcdist_builder
env['BUILDERS']['SrcDist'] = srcdist_builder
def exists(env):
"""
Make sure srcdist exists.
"""
return True
return targz.exists(env)