[SCons] Fix dependency resolution for some Python files

Cherry-pick of trunk r2935
This commit is contained in:
Ray Speth 2014-06-20 19:41:17 +00:00
parent 78c9c9c0a5
commit b4779c4310

View file

@ -29,7 +29,8 @@ def add_dependencies(mod, ext):
for f in mglob(localenv, 'cantera', 'pyx', 'pxd'):
localenv.Depends(ext, f)
for f in (mglob(localenv, 'cantera/test', 'py') +
for f in (mglob(localenv, 'cantera', 'py') +
mglob(localenv, 'cantera/test', 'py') +
mglob(localenv, 'cantera/mixmaster', 'py') +
mglob(localenv, 'cantera/mixmaster/Units', 'py') +
mglob(localenv, 'cantera/examples/tutorial', 'py') +