Skip to content

Commit

Permalink
Remove other instance of string(CONCAT)
Browse files Browse the repository at this point in the history
  • Loading branch information
nixprime committed Feb 6, 2018
1 parent 8a4a0a0 commit beb919c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/FindPythonConfig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if(PYTHONINTERP_FOUND)
set(_Python_config "${PYTHON_EXECUTABLE}-config")
execute_process(COMMAND ${_Python_config} "--includes" OUTPUT_VARIABLE PYTHON_COMPILE_FLAGS OUTPUT_STRIP_TRAILING_WHITESPACE)
execute_process(COMMAND ${_Python_config} "--ldflags" OUTPUT_VARIABLE PYTHON_LINK_FLAGS OUTPUT_STRIP_TRAILING_WHITESPACE)
string(CONCAT _Python_config_message ${PYTHON_COMPILE_FLAGS} "; " ${PYTHON_LINK_FLAGS})
set(_Python_config_message "${PYTHON_COMPILE_FLAGS}; ${PYTHON_LINK_FLAGS}")
unset(_Python_config)
else(PYTHONINTERP_FOUND)
message(SEND_ERROR "Python interpreter not found")
Expand Down

0 comments on commit beb919c

Please sign in to comment.