diff options
author | Steven Knight <knight@baldmt.com> | 2003-05-02 04:09:02 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-05-02 04:09:02 (GMT) |
commit | 77568a787451a72ef62198db424ac62bbaf50294 (patch) | |
tree | 1c9a820e32ea1a4eb89d70d9ef895ed6557cb2a4 /test/F77PATH.py | |
parent | 8adc0857c2ebd976314a29ca338d6ce82ece251f (diff) | |
download | SCons-77568a787451a72ef62198db424ac62bbaf50294.zip SCons-77568a787451a72ef62198db424ac62bbaf50294.tar.gz SCons-77568a787451a72ef62198db424ac62bbaf50294.tar.bz2 |
Fix regression tests that use test.whereis(). (Anthony Roach)
Diffstat (limited to 'test/F77PATH.py')
-rw-r--r-- | test/F77PATH.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/F77PATH.py b/test/F77PATH.py index f64abb0..f3dd483 100644 --- a/test/F77PATH.py +++ b/test/F77PATH.py @@ -43,7 +43,7 @@ args = prog + ' ' + subdir_prog + ' ' + variant_prog test = TestSCons.TestSCons() -if not test.where_is('g77'): +if not test.detect('F77', 'g77'): test.pass_test() test.subdir('include', 'subdir', ['subdir', 'include'], 'inc2') |