From 1e03fe75bb7adb04b7404151b293f19a648419e0 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 19 Mar 2004 14:48:41 -0500 Subject: [PATCH] ENH: Clarified recursive TRY_COMPILE error message. --- Source/cmTryCompileCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmTryCompileCommand.cxx b/Source/cmTryCompileCommand.cxx index dc9d32076..422b02b83 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; }