diff options
Diffstat (limited to 'test/CPPFLAGS.py')
-rw-r--r-- | test/CPPFLAGS.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/CPPFLAGS.py b/test/CPPFLAGS.py index 352ed7d..d8587c6 100644 --- a/test/CPPFLAGS.py +++ b/test/CPPFLAGS.py @@ -38,7 +38,10 @@ if sys.platform == 'win32': else: _exe = '' _obj = '.o' - _shobj = '.os' + if string.find(sys.platform, 'irix') > -1: + _shobj = '.o' + else: + _shobj = '.os' test = TestSCons.TestSCons() |