Skip to content

Commit

Permalink
Correct bad patch commands
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed Feb 20, 2025
1 parent 04645f4 commit dce8c83
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cpp/cmake/deps/boost-header-only.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (NOT TARGET deps::boost-header-only)
GIT_TAG boost-${Boost_VERSION}
GIT_SHALLOW TRUE
EXCLUDE_FROM_ALL
PATCH_COMMAND ${GIT_EXECUTABLE} apply "${CMAKE_CURRENT_LIST_DIR}/boost-header-only.patch" || true
PATCH_COMMAND ${GIT_EXECUTABLE} apply "${CMAKE_CURRENT_LIST_DIR}/boost-header-only.patch"
)

message(STATUS "Fetching boost-header-only sources")
Expand Down
2 changes: 1 addition & 1 deletion cpp/cmake/deps/libcuckoo.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if (NOT TARGET deps::libcuckoo)
GIT_REPOSITORY https://github.com/efficient/libcuckoo
GIT_TAG v0.3
GIT_SHALLOW TRUE
PATCH_COMMAND ${GIT_EXECUTABLE} apply "${CMAKE_CURRENT_LIST_DIR}/libcuckoo.patch" || true
PATCH_COMMAND ${GIT_EXECUTABLE} apply "${CMAKE_CURRENT_LIST_DIR}/libcuckoo.patch"
EXCLUDE_FROM_ALL
)
message(STATUS "Fetching libcuckoo sources")
Expand Down
2 changes: 1 addition & 1 deletion cpp/cmake/deps/pybind11.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if (NOT TARGET deps::pybind11)
GIT_REPOSITORY https://github.com/pybind/pybind11.git
GIT_TAG v2.11.1
GIT_SHALLOW TRUE
PATCH_COMMAND ${GIT_EXECUTABLE} apply "${CMAKE_CURRENT_LIST_DIR}/pybind11_pr4857_4877.patch" || true
PATCH_COMMAND ${GIT_EXECUTABLE} apply "${CMAKE_CURRENT_LIST_DIR}/pybind11_pr4857_4877.patch"
EXCLUDE_FROM_ALL
)
message(STATUS "Fetching pybind11 sources")
Expand Down
2 changes: 1 addition & 1 deletion python/cmake/deps/pybind11.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if (NOT TARGET deps::pybind11)
GIT_REPOSITORY https://github.com/pybind/pybind11.git
GIT_TAG v2.11.1
GIT_SHALLOW TRUE
PATCH_COMMAND ${GIT_EXECUTABLE} apply "${CMAKE_CURRENT_LIST_DIR}/pybind11_pr4857_4877.patch" || true
PATCH_COMMAND ${GIT_EXECUTABLE} apply "${CMAKE_CURRENT_LIST_DIR}/pybind11_pr4857_4877.patch"
EXCLUDE_FROM_ALL
)
message(STATUS "Fetching pybind11 sources")
Expand Down

0 comments on commit dce8c83

Please sign in to comment.