summaryrefslogtreecommitdiffstats
path: root/Source/cmTryCompileCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2004-03-19 19:48:41 (GMT)
committerBrad King <brad.king@kitware.com>2004-03-19 19:48:41 (GMT)
commit1e03fe75bb7adb04b7404151b293f19a648419e0 (patch)
tree6c0e17de234620d1a9bf65b046835d072d5e7ba5 /Source/cmTryCompileCommand.cxx
parenta7c779731d319e2b1ac912253ec9908fd9e0a81b (diff)
downloadCMake-1e03fe75bb7adb04b7404151b293f19a648419e0.zip
CMake-1e03fe75bb7adb04b7404151b293f19a648419e0.tar.gz
CMake-1e03fe75bb7adb04b7404151b293f19a648419e0.tar.bz2
ENH: Clarified recursive TRY_COMPILE error message.
Diffstat (limited to 'Source/cmTryCompileCommand.cxx')
-rw-r--r--Source/cmTryCompileCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTryCompileCommand.cxx b/Source/cmTryCompileCommand.cxx
index dc9d320..422b02b 100644
--- a/Source/cmTryCompileCommand.cxx
+++ b/Source/cmTryCompileCommand.cxx
@@ -118,7 +118,7 @@ int cmTryCompileCommand::CoreTryCompileCode(
// do not allow recursive try Compiles
if (!strcmp(binaryDirectory,mf->GetHomeOutputDirectory()))
{
- cmSystemTools::Error("Attempt at a recursive or nested TRY_COMPILE",
+ cmSystemTools::Error("Attempt at a recursive or nested TRY_COMPILE in directory ",
binaryDirectory);
return -1;
}