diff options
author | Brad King <brad.king@kitware.com> | 2016-09-14 13:02:29 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-09-14 13:02:29 (GMT) |
commit | ea69e03afaeff76d2141ab4a330f3489297a3a41 (patch) | |
tree | 0cc99d4b4beb1c5aa2351ddd469dd446ac01da98 | |
parent | e9dbb272e0075516f8d6a970a6eb70be6234c4b6 (diff) | |
parent | 6a9ed3d4aeee576dd87af77fe51a781c5fe64b79 (diff) | |
download | CMake-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.cxx | 6 |
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"; |