From 726c267f99ec9355172e43d1d6a7a0ea39a65e0b Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Thu, 22 Feb 2007 09:10:37 -0500 Subject: BUG: Produce an error when the script is not found --- Source/cmake.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 7edf2ea..d1cb716 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -377,7 +377,7 @@ void cmake::ReadListFile(const char *path) (cmSystemTools::GetCurrentWorkingDirectory().c_str()); if (!lg->GetMakefile()->ReadListFile(0, path)) { - std::cerr << "Error processing file:" << path << "\n"; + cmSystemTools::Error("Error processing file:", path); } } -- cgit v0.12