Skip to content

Commit

Permalink
Merge pull request #14907 from mkruskal-google/cmake-install-fix
Browse files Browse the repository at this point in the history
Only substitute prefixes during installation setup.
  • Loading branch information
zhangskz committed Nov 30, 2023
2 parents c709a34 + 05ad652 commit 59eebe3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cmake/install.cmake
Expand Up @@ -78,7 +78,10 @@ foreach(_header ${protobuf_HEADERS})
elseif (_find_nosrc GREATER -1)
set(_from_dir "${protobuf_SOURCE_DIR}")
endif()
string(REPLACE "${_from_dir}" "" _header ${_header})
# On some platforms `_form_dir` ends up being just "protobuf", which can
# easily match multiple times in our paths. We force it to only replace
# prefixes to avoid this case.
string(REGEX REPLACE "^${_from_dir}" "" _header ${_header})
get_filename_component(_extract_from "${_from_dir}/${_header}" ABSOLUTE)
get_filename_component(_extract_name ${_header} NAME)
get_filename_component(_extract_to "${CMAKE_INSTALL_INCLUDEDIR}/${_header}" DIRECTORY)
Expand Down

0 comments on commit 59eebe3

Please sign in to comment.