summaryrefslogtreecommitdiff
path: root/test/CPPFLAGS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-04-26 13:02:02 +0000
committerSteven Knight <knight@baldmt.com>2003-04-26 13:02:02 +0000
commita925fbfbbecd978b6275ba0592e3bd21b0bd7781 (patch)
tree292853eb221ebe82c9e9b47c03c74b78a155add0 /test/CPPFLAGS.py
parentdbb26a739bda888c1b7e206dbf6753ebadc68ebc (diff)
downloadscons-a925fbfbbecd978b6275ba0592e3bd21b0bd7781.tar.gz
Portability fixes for test. (Chad Austin)
Diffstat (limited to 'test/CPPFLAGS.py')
-rw-r--r--test/CPPFLAGS.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/CPPFLAGS.py b/test/CPPFLAGS.py
index 352ed7d0..d8587c66 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()