Skip to content

Commit ae72cc7

Browse files
committed
[cmake] Fix missing paren in FindPrefixFromConfig
This was in CMake syntax generation, so we didn't catch it eval time. Follow up from D117973
1 parent 05a948e commit ae72cc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/Modules/FindPrefixFromConfig.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function(find_prefix_from_config out_var prefix_var path_to_leave)
3232
# our way there relatively.
3333
set(config_code
3434
"# Installation prefix is fixed absolute path"
35-
"set(${prefix_var} \"${CMAKE_INSTALL_PREFIX}\"")
35+
"set(${prefix_var} \"${CMAKE_INSTALL_PREFIX}\")")
3636
else()
3737
# `path_to_leave` is relative. Relative to what? The install prefix.
3838
# We therefore go up enough parent directories to get back to the

0 commit comments

Comments
 (0)