diff options
Diffstat (limited to 'test/SHF77.py')
-rw-r--r-- | test/SHF77.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/SHF77.py b/test/SHF77.py index 19fa51e..23e9bf3 100644 --- a/test/SHF77.py +++ b/test/SHF77.py @@ -34,7 +34,10 @@ python = TestSCons.python if sys.platform == 'win32': _obj = '.obj' else: - _obj = '.os' + if string.find(sys.platform, 'irix') > -1: + _obj = '.o' + else: + _obj = '.os' test = TestSCons.TestSCons() |