diff options
author | Russel Winder <russel@winder.org.uk> | 2014-12-23 08:12:43 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2014-12-23 08:12:43 (GMT) |
commit | fc7798ccedd016225f3e9d4cf9ba4dee40a5b1a4 (patch) | |
tree | af92b376490f6ef084c34cc862015732a6f09a0c | |
parent | 90247485ca647e1fb87e10216270eb8da01d37d7 (diff) | |
download | SCons-fc7798ccedd016225f3e9d4cf9ba4dee40a5b1a4.zip SCons-fc7798ccedd016225f3e9d4cf9ba4dee40a5b1a4.tar.gz SCons-fc7798ccedd016225f3e9d4cf9ba4dee40a5b1a4.tar.bz2 |
Check for the header file itself on not an associated executable.
-rw-r--r-- | test/D/HSTeoh/Common/linkingProblem.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/D/HSTeoh/Common/linkingProblem.py b/test/D/HSTeoh/Common/linkingProblem.py index ab096f2..b526ad7 100644 --- a/test/D/HSTeoh/Common/linkingProblem.py +++ b/test/D/HSTeoh/Common/linkingProblem.py @@ -43,7 +43,7 @@ def testForTool(tool): if not isExecutableOfToolAvailable(test, tool) : test.skip_test("Required executable for tool '{0}' not found, skipping test.\n".format(tool)) - if not exists('/usr/bin/tset'): + if not exists('/usr/include/ncurses.h'): test.skip_test("ncurses not apparently installed, skip this test.") test.dir_fixture('LinkingProblem') |