diff options
author | William Deegan <bill@baddogconsulting.com> | 2018-09-24 01:00:54 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2018-09-24 01:00:54 (GMT) |
commit | 6da2e3926185a44c20bbd3be3564b332e98afd65 (patch) | |
tree | 36f98759e145a48243d408d4e9946aa5a3b1c7ad /test/LINK | |
parent | 9d8ca555d5e95fde61fc3f43fa0fde632e487279 (diff) | |
download | SCons-6da2e3926185a44c20bbd3be3564b332e98afd65.zip SCons-6da2e3926185a44c20bbd3be3564b332e98afd65.tar.gz SCons-6da2e3926185a44c20bbd3be3564b332e98afd65.tar.bz2 |
fix test so it should run on any platform
Diffstat (limited to 'test/LINK')
-rw-r--r-- | test/LINK/applelink.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LINK/applelink.py b/test/LINK/applelink.py index 0d05d65..b13b36f 100644 --- a/test/LINK/applelink.py +++ b/test/LINK/applelink.py @@ -49,7 +49,7 @@ main(int argc, char *argv[]) # Test issue # 2580 test.write('SConstruct', """ DefaultEnvironment(tools=[]) -env = Environment() +env = Environment(PLATFORM='darwin') env.Object( target = '#foo.o', |