diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2016-09-13 15:22:42 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2016-09-13 15:22:42 (GMT) |
commit | 6a9ed3d4aeee576dd87af77fe51a781c5fe64b79 (patch) | |
tree | 91936b41fb01affa3752e74f382f4551ef5f1ccb /Source/cmGeneratorTarget.cxx | |
parent | 5088765a2c3620bc652db538ae0054941cc23406 (diff) | |
download | CMake-6a9ed3d4aeee576dd87af77fe51a781c5fe64b79.zip CMake-6a9ed3d4aeee576dd87af77fe51a781c5fe64b79.tar.gz CMake-6a9ed3d4aeee576dd87af77fe51a781c5fe64b79.tar.bz2 |
cmGeneratorTarget: factor out a space
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-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"; |