diff options
author | Steven Knight <knight@baldmt.com> | 2003-04-10 05:35:38 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-04-10 05:35:38 (GMT) |
commit | 2f8be7360679ad5e0260f4965ea5dd9506c7b033 (patch) | |
tree | 1379c046e82985011c5ab2d7604adf055e3140b9 /test/ASFLAGS.py | |
parent | 81e5793a07783b29a13004f834b7579a0e1605bb (diff) | |
download | SCons-2f8be7360679ad5e0260f4965ea5dd9506c7b033.zip SCons-2f8be7360679ad5e0260f4965ea5dd9506c7b033.tar.gz SCons-2f8be7360679ad5e0260f4965ea5dd9506c7b033.tar.bz2 |
Implement Tool refactoring. (Chad Austin + Steve Leblanc)
Diffstat (limited to 'test/ASFLAGS.py')
-rw-r--r-- | test/ASFLAGS.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ASFLAGS.py b/test/ASFLAGS.py index 229a27a..0331aed 100644 --- a/test/ASFLAGS.py +++ b/test/ASFLAGS.py @@ -130,6 +130,7 @@ sys.exit(0) test.write('SConstruct', """ env = Environment(LINK = r'%s mylink.py', + LINKFLAGS = [], AS = r'%s myas.py', ASFLAGS = '-x', CC = r'%s myas.py') env.Program(target = 'test1', source = 'test1.s') |