summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-04-26 13:02:02 (GMT)
committerSteven Knight <knight@baldmt.com>2003-04-26 13:02:02 (GMT)
commita925fbfbbecd978b6275ba0592e3bd21b0bd7781 (patch)
tree292853eb221ebe82c9e9b47c03c74b78a155add0 /etc
parentdbb26a739bda888c1b7e206dbf6753ebadc68ebc (diff)
downloadSCons-a925fbfbbecd978b6275ba0592e3bd21b0bd7781.zip
SCons-a925fbfbbecd978b6275ba0592e3bd21b0bd7781.tar.gz
SCons-a925fbfbbecd978b6275ba0592e3bd21b0bd7781.tar.bz2
Portability fixes for test. (Chad Austin)
Diffstat (limited to 'etc')
-rw-r--r--etc/TestSCons.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/TestSCons.py b/etc/TestSCons.py
index e8bac90..f9c4edf 100644
--- a/etc/TestSCons.py
+++ b/etc/TestSCons.py
@@ -24,6 +24,11 @@ import TestCmd
python = TestCmd.python_executable
+if string.find(sys.platform, 'irix') != -1:
+ fortran_lib = 'ftn'
+else:
+ fortran_lib = 'g2c'
+
class TestFailed(Exception):
def __init__(self, args=None):
self.args = args