summaryrefslogtreecommitdiffstats
path: root/Source/cmRulePlaceholderExpander.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-03-18 18:20:46 (GMT)
committerBrad King <brad.king@kitware.com>2020-03-24 14:10:06 (GMT)
commit12b39aef7599a3ab6b1c1b9537d427839a9346b3 (patch)
tree36ccbd9854b82dd3c7aa25c4eb3f9a1ac6365916 /Source/cmRulePlaceholderExpander.cxx
parentc98ec3692ea2a98edb6c7c26ffc2e0d12863df99 (diff)
downloadCMake-12b39aef7599a3ab6b1c1b9537d427839a9346b3.zip
CMake-12b39aef7599a3ab6b1c1b9537d427839a9346b3.tar.gz
CMake-12b39aef7599a3ab6b1c1b9537d427839a9346b3.tar.bz2
Remove redundant calls to CollapseFullPath
Remove calls where it is known the input is already a collapsed full path.
Diffstat (limited to 'Source/cmRulePlaceholderExpander.cxx')
-rw-r--r--Source/cmRulePlaceholderExpander.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmRulePlaceholderExpander.cxx b/Source/cmRulePlaceholderExpander.cxx
index 5ab1b3a..05086f0 100644
--- a/Source/cmRulePlaceholderExpander.cxx
+++ b/Source/cmRulePlaceholderExpander.cxx
@@ -236,8 +236,7 @@ std::string cmRulePlaceholderExpander::ExpandRuleVariable(
}
if (variable == "CMAKE_COMMAND") {
return outputConverter->ConvertToOutputFormat(
- cmSystemTools::CollapseFullPath(cmSystemTools::GetCMakeCommand()),
- cmOutputConverter::SHELL);
+ cmSystemTools::GetCMakeCommand(), cmOutputConverter::SHELL);
}
auto compIt = this->Compilers.find(variable);