From 621c84f9e0ed49489b27d46e926c4a5606d66228 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 23 Aug 2005 10:24:01 -0400 Subject: [PATCH] make sure correct path type is used --- Source/cmFileCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 64d3bd9db..46e294595 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: ";