diff options
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 64d3bd9..46e2945 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -648,7 +648,7 @@ bool cmFileCommand::HandleInstallCommand( #if defined(__APPLE_CC__) { std::string ranlib = "ranlib "; - ranlib += destfile; + ranlib += cmSystemTools::ConvertToOutputPath(destfile.c_str()); if(!cmSystemTools::RunSingleCommand(ranlib.c_str())) { std::string err = "ranlib failed: "; |