diff options
author | Steven Knight <knight@baldmt.com> | 2002-06-26 01:47:54 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-06-26 01:47:54 (GMT) |
commit | 5dd473bc401492d93a372b03965f2718b05426b8 (patch) | |
tree | cef954000dc721951f583f9d1367610cb1a54823 /test/F77PATH.py | |
parent | 651972979462ebc48aac362dd53119ef79291cf5 (diff) | |
download | SCons-5dd473bc401492d93a372b03965f2718b05426b8.zip SCons-5dd473bc401492d93a372b03965f2718b05426b8.tar.gz SCons-5dd473bc401492d93a372b03965f2718b05426b8.tar.bz2 |
Win32 portability fixes for various tests.
Diffstat (limited to 'test/F77PATH.py')
-rw-r--r-- | test/F77PATH.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/F77PATH.py b/test/F77PATH.py index e8b540f..ad38bf1 100644 --- a/test/F77PATH.py +++ b/test/F77PATH.py @@ -41,6 +41,11 @@ args = prog + ' ' + subdir_prog + ' ' + variant_prog test = TestSCons.TestSCons() +if not test.where_is('g77'): + print "g77 is not installed on this system." + print "Cannot test F77PATH." + test.no_result(1) + test.subdir('include', 'subdir', ['subdir', 'include'], 'inc2') test.write('SConstruct', """ |