Skip to content

Commit

Permalink
Fix install prefix of Python components
Browse files Browse the repository at this point in the history
  • Loading branch information
vanderhe authored and bhourahine committed Dec 11, 2024
1 parent bcc87a3 commit eb1652f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/dptools/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(prefix ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_PREFIX})
set(prefix ${CMAKE_INSTALL_PREFIX})
set(cmake-command "
execute_process(
COMMAND ${PYTHON_INTERPRETER} -m pip install --no-deps --prefix ${prefix} .
Expand Down
2 changes: 1 addition & 1 deletion tools/pythonapi/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(prefix ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_PREFIX})
set(prefix ${CMAKE_INSTALL_PREFIX})
set(cmake-command "
execute_process(
COMMAND ${PYTHON_INTERPRETER} -m pip install --no-deps --prefix ${prefix} .
Expand Down

0 comments on commit eb1652f

Please sign in to comment.