diff options
author | Robert Managan <managan1@llnl.gov> | 2010-08-23 18:05:00 (GMT) |
---|---|---|
committer | Robert Managan <managan1@llnl.gov> | 2010-08-23 18:05:00 (GMT) |
commit | 7447f1d6eafa0e13d89d1bf30cb78cf44660b778 (patch) | |
tree | caafe5aad293f9c0f1e764c20f3100fc5838d11b | |
parent | 9506aa8bf245a3dfedfe844e8b86e842fe328635 (diff) | |
download | SCons-7447f1d6eafa0e13d89d1bf30cb78cf44660b778.zip SCons-7447f1d6eafa0e13d89d1bf30cb78cf44660b778.tar.gz SCons-7447f1d6eafa0e13d89d1bf30cb78cf44660b778.tar.bz2 |
This time make it really platform agnostic.
Sorry about the multiple commits!!
-rw-r--r-- | test/TEX/generated_files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/TEX/generated_files.py b/test/TEX/generated_files.py index 339d3b3..35e0020 100644 --- a/test/TEX/generated_files.py +++ b/test/TEX/generated_files.py @@ -49,7 +49,7 @@ import os env = Environment(ENV = { 'PATH' : os.environ['PATH'] }) -copy_latex = Builder(action='cp $SOURCE $TARGET', +copy_latex = Builder(action=Copy('$TARGET', '$SOURCE'), suffix='.tex', src_suffix='.src') env.Append( BUILDERS={'CopyLatex' : copy_latex} ) |