convert path to string

This commit is contained in:
Curtis.Bezault 2019-07-24 14:53:50 -07:00
parent 67a749b989
commit f81aa47176

View File

@ -175,9 +175,9 @@ namespace vcpkg
out_str.append(Strings::join(",",
Util::fmap(
pgh.external_files,
[](const std::pair<std::string, std::string>& kv)
[](const std::pair<fs::path, std::string>& kv)
{
return kv.first + "," + kv.second;
return kv.first.u8string() + "," + kv.second;
}))).push_back('\n');
}
}