diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-23 16:19:30 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-23 16:19:30 (GMT) |
commit | 161524581f7045a2cc7210415638df2f328d292a (patch) | |
tree | 451116a06ebabec9bb7f99d028d2428ef69397be /Source/cmCTest.cxx | |
parent | af7466b7050dadf0f9bca921d1327bac9faab5ae (diff) | |
download | CMake-161524581f7045a2cc7210415638df2f328d292a.zip CMake-161524581f7045a2cc7210415638df2f328d292a.tar.gz CMake-161524581f7045a2cc7210415638df2f328d292a.tar.bz2 |
BUG: Fix CTestCustom.ctest file
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index c9e7dfc..cca171e 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -1894,7 +1894,7 @@ int cmCTest::ReadCustomConfigurationFileTree(const char* dir) std::string rexpr = dir; rexpr += "/CTestCustom.ctest"; - if ( !found && cmSystemTools::FileExists(fname.c_str()) ) + if ( !found && cmSystemTools::FileExists(rexpr.c_str()) ) { cmsys::Glob gl; gl.RecurseOn(); |