Skip to content

Commit

Permalink
python/cmake: remove extraneous comma between variables
Browse files Browse the repository at this point in the history
The spurious comma prevents the expression from working as intended.

Fixes: iovisor@6813fbc
Fixes: iovisor#4830

Signed-off-by: Holger Hoffstätte <[email protected]>
  • Loading branch information
hhoffstaette committed Dec 8, 2023
1 parent 0f5c264 commit 5383e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ foreach(PY_CMD ${PYTHON_CMD})
add_custom_target(bcc_py_${PY_CMD_ESCAPED} ALL DEPENDS ${PIP_INSTALLABLE})

if(NOT PYTHON_PREFIX)
set(PYTHON_PREFIX, ${CMAKE_INSTALL_PREFIX} )
set(PYTHON_PREFIX ${CMAKE_INSTALL_PREFIX})
endif()

install(
Expand Down

0 comments on commit 5383e91

Please sign in to comment.