Merge topic 'fixAbsoluteDestHandlingRegression'
225abc5
InstallGen/CPack fix handling absolute installed file regression
This commit is contained in:
commit
126158f046
|
@ -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…
Reference in New Issue