diff options
author | Brad King <brad.king@kitware.com> | 2015-02-11 16:48:02 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-02-11 20:12:16 (GMT) |
commit | 290ca8e2d0328d27f51ff5248c35e32e44fdd1eb (patch) | |
tree | d87e3cd4a2c7d7d538ed1bc53f769fc69f198d39 /Source/cmInstallExportGenerator.cxx | |
parent | f99991db882c2f4cf8246b9c272845faaa5bbce5 (diff) | |
download | CMake-290ca8e2d0328d27f51ff5248c35e32e44fdd1eb.zip CMake-290ca8e2d0328d27f51ff5248c35e32e44fdd1eb.tar.gz CMake-290ca8e2d0328d27f51ff5248c35e32e44fdd1eb.tar.bz2 |
cmInstallGenerator: Refactor computation of absolute install dest
Replace the GetInstallDestination method, which looked up the
Destination ivar, with a new ConvertToAbsoluteDestination method that
takes the nominal destination as an argument. Update call sites
accordingly. This will allow some clients to transform the install
destination before calling the method.
Diffstat (limited to 'Source/cmInstallExportGenerator.cxx')
-rw-r--r-- | Source/cmInstallExportGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmInstallExportGenerator.cxx b/Source/cmInstallExportGenerator.cxx index 4480cc6..77af6c2 100644 --- a/Source/cmInstallExportGenerator.cxx +++ b/Source/cmInstallExportGenerator.cxx @@ -199,7 +199,7 @@ void cmInstallExportGenerator::GenerateScriptActions(std::ostream& os, { // Remove old per-configuration export files if the main changes. std::string installedDir = "$ENV{DESTDIR}"; - installedDir += this->GetInstallDestination(); + installedDir += this->ConvertToAbsoluteDestination(this->Destination); installedDir += "/"; std::string installedFile = installedDir; installedFile += this->FileName; |