From 5da6d26896d196cfbc992af32f82f8d2faf100c5 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Thu, 30 Dec 2021 07:00:50 +0000 Subject: [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 --- cmake/Modules/ExtendPath.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmake/Modules/ExtendPath.cmake') 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}") -- cgit v1.2.3