diff options
Diffstat (limited to 'Source/cmLoadCommandCommand.cxx')
-rw-r--r-- | Source/cmLoadCommandCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLoadCommandCommand.cxx b/Source/cmLoadCommandCommand.cxx index a181f00..16e16ee 100644 --- a/Source/cmLoadCommandCommand.cxx +++ b/Source/cmLoadCommandCommand.cxx @@ -152,7 +152,7 @@ bool cmLoadCommandCommand::InitialPass(std::vector<std::string> const& argsIn) // the file must exist std::string fullPath = cmDynamicLoader::LibPrefix(); - fullPath += argsIn[0] + cmDynamicLoader::LibExtension(); + fullPath += "cm" + argsIn[0] + cmDynamicLoader::LibExtension(); std::vector<std::string> args; cmSystemTools::ExpandListArguments(argsIn, args); |