summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-07-14 18:15:21 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-07-14 18:15:21 (GMT)
commit79eeb9c4e6f64ae19f098151c687864f1b5321c1 (patch)
treeceb70b48c0210439f801344d72aaffa44cd1bb8e
parent237e7d34f912538ed3f1bae27b140053b1d48e92 (diff)
downloadCMake-79eeb9c4e6f64ae19f098151c687864f1b5321c1.zip
CMake-79eeb9c4e6f64ae19f098151c687864f1b5321c1.tar.gz
CMake-79eeb9c4e6f64ae19f098151c687864f1b5321c1.tar.bz2
BUG: Look for custom files in all directories
-rw-r--r--Source/cmCTest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 2ccef4a..ee25fc7 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -1716,7 +1716,7 @@ int cmCTest::ReadCustomConfigurationFileTree(const char* dir)
cmMakefile *mf = lg->GetMakefile();
std::string rexpr = dir;
- rexpr += "/*/CTestCustom.ctest";
+ rexpr += "/CTestCustom.ctest";
cmGlob gl;
gl.RecurseOn();
gl.FindFiles(rexpr);