diff options
author | Brad King <brad.king@kitware.com> | 2008-03-02 16:48:50 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-03-02 16:48:50 -0500 |
commit | 73f175146a3f204820a1ae0a81b98355fa48ebcd (patch) | |
tree | 14181f51fa13b4865c53a113487bdf5d715df95d /Source/cmInstallTargetGenerator.cxx | |
parent | 652951b976cedc29986c2a856f0ca4538c50a21a (diff) | |
download | cmake-73f175146a3f204820a1ae0a81b98355fa48ebcd.tar.gz |
ENH: During installation do not use builtin chrpath if the rpath will not change.
Diffstat (limited to 'Source/cmInstallTargetGenerator.cxx')
-rw-r--r-- | Source/cmInstallTargetGenerator.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmInstallTargetGenerator.cxx b/Source/cmInstallTargetGenerator.cxx index 9ecf3467bc..f05c3756a8 100644 --- a/Source/cmInstallTargetGenerator.cxx +++ b/Source/cmInstallTargetGenerator.cxx @@ -572,6 +572,12 @@ cmInstallTargetGenerator // Get the install RPATH from the link information. std::string newRpath = cli->GetChrpathString(); + // Skip the rule if the paths are identical + if(oldRpath == newRpath) + { + return; + } + // Write a rule to run chrpath to set the install-tree RPATH os << indent << "FILE(CHRPATH FILE \"" << toDestDirPath << "\"\n" << indent << " OLD_RPATH \"" << oldRpath << "\"\n" |