summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-05-31 19:48:35 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-05-31 19:48:35 (GMT)
commit01b980591bd26c30691530cdc848b4591e052c04 (patch)
treec9542d012753769f132b84a81b1dd0020ffe7e50 /Source/cmake.cxx
parent6b37e97caee06e5a2b80798cd2c1cbe5e9c7569b (diff)
downloadCMake-01b980591bd26c30691530cdc848b4591e052c04.zip
CMake-01b980591bd26c30691530cdc848b4591e052c04.tar.gz
CMake-01b980591bd26c30691530cdc848b4591e052c04.tar.bz2
BUG: fix edit of directories
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 66df7b2..c24051b 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -171,7 +171,9 @@ void cmake::AddCMakePaths(const std::vector<std::string>& args)
if (!cmSystemTools::FileIsDirectory(modules.c_str()))
{
// couldn't find modules
- cmSystemTools::Error("Could not find CMAKE_ROOT !!!");
+ cmSystemTools::Error("Could not find CMAKE_ROOT !!!\n",
+ "Modules directory not in directory:\n",
+ modules.c_str());
return;
}
}