[cmake] Tweak warning in `extend_path` helper function

There was one more reference the word "install" I forgot to remove.

Follow-up to bde561c481 /
https://reviews.llvm.org/D115746
This commit is contained in:
John Ericson 2021-12-30 07:00:50 +00:00
parent bde561c481
commit 5da6d26896
1 changed files with 1 additions and 1 deletions

View File

@ -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}")