BUG: RPATH adjustment of versioned executables should operate on the file and not the symlink.
This commit is contained in:
parent
e429335f28
commit
852242e56b
|
@ -200,6 +200,12 @@ cmInstallTargetGenerator
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
// Operations done at install time on the installed file should
|
||||||
|
// be done on the real file and not any of the symlinks.
|
||||||
|
toInstallPath = this->GetInstallDestination();
|
||||||
|
toInstallPath += "/";
|
||||||
|
toInstallPath += targetNameReal;
|
||||||
|
|
||||||
files.push_back(from1);
|
files.push_back(from1);
|
||||||
if(targetNameReal != targetName)
|
if(targetNameReal != targetName)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue