Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2021-12-30 10:00:50 +0300
committerJohn Ericson <John.Ericson@Obsidian.Systems>2021-12-30 10:00:50 +0300
commit5da6d26896d196cfbc992af32f82f8d2faf100c5 (patch)
tree189ca4740ed4fd3ee82dccc99a8acab65a8bf406 /cmake
parentbde561c4813952847112600e5efe72d9015556f7 (diff)
[cmake] Tweak warning in `extend_path` helper function
There was one more reference the word "install" I forgot to remove. Follow-up to bde561c4813952847112600e5efe72d9015556f7 / https://reviews.llvm.org/D115746
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Modules/ExtendPath.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Modules/ExtendPath.cmake b/cmake/Modules/ExtendPath.cmake
index 5db393a21e1c..0dd6a4d3dab5 100644
--- a/cmake/Modules/ExtendPath.cmake
+++ b/cmake/Modules/ExtendPath.cmake
@@ -10,7 +10,7 @@ function(extend_path joined_path base_path current_segment)
elseif("${base_path}" STREQUAL "")
set(temp_path "${current_segment}")
elseif(IS_ABSOLUTE "${current_segment}")
- message(WARNING "Since \"${current_segment}\" is absolute, it overrides install path: \"${base_path}\".")
+ message(WARNING "Since \"${current_segment}\" is absolute, it overrides base path: \"${base_path}\".")
set(temp_path "${current_segment}")
else()
set(temp_path "${base_path}/${current_segment}")