summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-09-14 13:02:29 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-09-14 13:02:29 (GMT)
commitea69e03afaeff76d2141ab4a330f3489297a3a41 (patch)
tree0cc99d4b4beb1c5aa2351ddd469dd446ac01da98
parente9dbb272e0075516f8d6a970a6eb70be6234c4b6 (diff)
parent6a9ed3d4aeee576dd87af77fe51a781c5fe64b79 (diff)
downloadCMake-ea69e03afaeff76d2141ab4a330f3489297a3a41.zip
CMake-ea69e03afaeff76d2141ab4a330f3489297a3a41.tar.gz
CMake-ea69e03afaeff76d2141ab4a330f3489297a3a41.tar.bz2
Merge topic 'minor-cleanup'
6a9ed3d4 cmGeneratorTarget: factor out a space
-rw-r--r--Source/cmGeneratorTarget.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 7dd8e7f..4f8c036 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -1280,11 +1280,11 @@ bool cmGeneratorTarget::HasMacOSXRpathInstallNameDir(
if (!this->Makefile->IsSet("CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG")) {
std::ostringstream w;
- w << "Attempting to use";
+ w << "Attempting to use ";
if (macosx_rpath) {
- w << " MACOSX_RPATH";
+ w << "MACOSX_RPATH";
} else {
- w << " @rpath";
+ w << "@rpath";
}
w << " without CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG being set.";
w << " This could be because you are using a Mac OS X version";