vote up 0 vote down star

I am using the Command builder in scons to specify that a particular script needs to be invoked to produce a particular file.

I would like to only run the script if it has been modified since the file was previously generated. The default behaviour of the Command builder seems to be to always run the script. How can I change this?

This is my current SConstruct:

speed = Command('speed_analysis.tex','','python code/speed.py')
report = PDF(target = 'report.pdf', source = 'report.tex')
Depends(report, speed)
flag

77% accept rate

1 Answer

vote up 0 vote down

Maybe your example is incomplete, but aren't you supposed to do:

env = Environment()
env.Command(....

I think you need to specify your dependencies as the second argument to Command:

Command('speed_analysis.tex','code/speed.py','python code/speed.py')
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.