From 5fb58b8686d17efdda36d3b50bb099c86b771af3 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Thu, 18 Jul 2013 11:46:50 +0200 Subject: [PATCH] Don't add trailing whitespace to error message. --- Source/cmTarget.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 70500cdaf..12cab8a0e 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -3206,7 +3206,7 @@ static void processIncludeDirectories(cmTarget *tgt, { e << "Target \"" << (*it)->TargetName << "\" contains relative " "path in its INTERFACE_INCLUDE_DIRECTORIES:\n" - " \"" << *li << "\" "; + " \"" << *li << "\""; } else {