diff options
author | Steven Knight <knight@baldmt.com> | 2006-01-21 19:01:06 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2006-01-21 19:01:06 (GMT) |
commit | 6fdb91f7abaaf0823070d17c8afcde6ca35d3549 (patch) | |
tree | 6923c674148af3f821725a49e3dbc194658d4257 /test/CC | |
parent | 9e51adb1a538111d3661e07e04ecc112370ab6f2 (diff) | |
download | SCons-6fdb91f7abaaf0823070d17c8afcde6ca35d3549.zip SCons-6fdb91f7abaaf0823070d17c8afcde6ca35d3549.tar.gz SCons-6fdb91f7abaaf0823070d17c8afcde6ca35d3549.tar.bz2 |
Eliminate unnecessary WIN32/Win32/win32 references in tests, too.
Diffstat (limited to 'test/CC')
-rw-r--r-- | test/CC/SHCCFLAGS.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CC/SHCCFLAGS.py b/test/CC/SHCCFLAGS.py index a830058..1f4fd3d 100644 --- a/test/CC/SHCCFLAGS.py +++ b/test/CC/SHCCFLAGS.py @@ -44,8 +44,8 @@ if string.find(sys.platform, 'irix') > -1: os.environ['LD_LIBRARYN32_PATH'] = '.' test.write('SConstruct', """ -foo = Environment(SHCCFLAGS = '%s', WIN32_INSERT_DEF=1) -bar = Environment(SHCCFLAGS = '%s', WIN32_INSERT_DEF=1) +foo = Environment(SHCCFLAGS = '%s', WINDOWS_INSERT_DEF=1) +bar = Environment(SHCCFLAGS = '%s', WINDOWS_INSERT_DEF=1) foo_obj = foo.SharedObject(target = 'foo', source = 'prog.c') foo.SharedLibrary(target = 'foo', source = foo_obj) @@ -109,7 +109,7 @@ test.run(program = test.workpath('fooprog'), stdout = "prog.c: FOO\n") test.run(program = test.workpath('barprog'), stdout = "prog.c: BAR\n") test.write('SConstruct', """ -bar = Environment(SHCCFLAGS = '%s', WIN32_INSERT_DEF=1) +bar = Environment(SHCCFLAGS = '%s', WINDOWS_INSERT_DEF=1) foo_obj = bar.SharedObject(target = 'foo', source = 'prog.c') bar.SharedLibrary(target = 'foo', source = foo_obj) |