diff options
author | Brad King <brad.king@kitware.com> | 2004-03-19 19:48:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2004-03-19 19:48:41 (GMT) |
commit | 1e03fe75bb7adb04b7404151b293f19a648419e0 (patch) | |
tree | 6c0e17de234620d1a9bf65b046835d072d5e7ba5 /Source/cmTryCompileCommand.cxx | |
parent | a7c779731d319e2b1ac912253ec9908fd9e0a81b (diff) | |
download | CMake-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.cxx | 2 |
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; } |