diff options
Diffstat (limited to 'test/option-c.py')
-rw-r--r-- | test/option-c.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/option-c.py b/test/option-c.py index 1596d9f..26d40ea 100644 --- a/test/option-c.py +++ b/test/option-c.py @@ -167,11 +167,11 @@ B = Builder(action = r'%s build.py $TARGETS $SOURCES') env = Environment(BUILDERS = { 'B' : B }, FOO = 'foo2') env.B(target = 'foo1.out', source = 'foo1.in') env.B(target = 'foo2.out', source = 'foo2.xxx') -env.B(target = 'foo2.xxx', source = 'foo2.in') +foo2_xxx = env.B(target = 'foo2.xxx', source = 'foo2.in') env.B(target = 'foo3.out', source = 'foo3.in') SConscript('subd/SConscript') -Clean('foo2.xxx', ['aux1.x']) -env.Clean('${FOO}.xxx', ['aux2.x']) +Clean(foo2_xxx, ['aux1.x']) +env.Clean(['${FOO}.xxx'], ['aux2.x']) Clean('.', ['subd']) """ % python) |