summaryrefslogtreecommitdiffstats
path: root/test/TEX
diff options
context:
space:
mode:
authorRobert Managan <managan1@llnl.gov>2010-08-23 18:05:00 (GMT)
committerRobert Managan <managan1@llnl.gov>2010-08-23 18:05:00 (GMT)
commit7447f1d6eafa0e13d89d1bf30cb78cf44660b778 (patch)
treecaafe5aad293f9c0f1e764c20f3100fc5838d11b /test/TEX
parent9506aa8bf245a3dfedfe844e8b86e842fe328635 (diff)
downloadSCons-7447f1d6eafa0e13d89d1bf30cb78cf44660b778.zip
SCons-7447f1d6eafa0e13d89d1bf30cb78cf44660b778.tar.gz
SCons-7447f1d6eafa0e13d89d1bf30cb78cf44660b778.tar.bz2
This time make it really platform agnostic.
Sorry about the multiple commits!!
Diffstat (limited to 'test/TEX')
-rw-r--r--test/TEX/generated_files.py2
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} )