summaryrefslogtreecommitdiff
path: root/test/option-s.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-10-11 23:13:20 +0000
committerSteven Knight <knight@baldmt.com>2001-10-11 23:13:20 +0000
commit6f4f6e4639a3a4a796b28322ba07b9b81f2c354f (patch)
treebf1be1f8cebc4b016b9856f27d1cf84879b547be /test/option-s.py
parent580b07ed247ab0de0ea96093fc2c4baa28c35c65 (diff)
downloadscons-6f4f6e4639a3a4a796b28322ba07b9b81f2c354f.tar.gz
Implement special variable substitution.
Diffstat (limited to 'test/option-s.py')
-rw-r--r--test/option-s.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option-s.py b/test/option-s.py
index f4d3c0ba..fe13fb7e 100644
--- a/test/option-s.py
+++ b/test/option-s.py
@@ -40,7 +40,7 @@ file.close()
test.write('SConstruct', """
MyBuild = Builder(name = "MyBuild",
- action = "python build.py %(target)s")
+ action = "python build.py $target")
env = Environment(BUILDERS = [MyBuild])
env.MyBuild(target = 'f1.out', source = 'f1.in')
env.MyBuild(target = 'f2.out', source = 'f2.in')