mirror of
https://github.com/reactos/CMake.git
synced 2025-01-18 17:35:03 +00:00
InstallGen/CPack fix handling absolute installed file regression
This commit is contained in:
parent
b03087798b
commit
225abc555d
@ -67,8 +67,11 @@ void cmInstallGenerator
|
||||
for(std::vector<std::string>::const_iterator fi = files.begin();
|
||||
fi != files.end(); ++fi)
|
||||
{
|
||||
if (fi!=files.begin()) os << ";";
|
||||
os << dest << cmSystemTools::ConvertToOutputPath("/");
|
||||
if (fi!=files.begin())
|
||||
{
|
||||
os << ";";
|
||||
}
|
||||
os << dest << "/";
|
||||
if (rename && *rename)
|
||||
{
|
||||
os << rename;
|
||||
|
Loading…
x
Reference in New Issue
Block a user