Skip to content

Commit f5752c0

Browse files
authored
Merge pull request #29597 from redpanda-data/td-seastar-hwloc-impl-deps
Move hwloc to impl_deps in seastar
2 parents f0b1836 + a3a6a2a commit f5752c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bazel/thirdparty/seastar.BUILD

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,10 @@ cc_library(
606606
implementation_deps = [
607607
"@c-ares",
608608
"@openssl",
609-
],
609+
] + select({
610+
":use_hwloc": ["@hwloc"],
611+
"//conditions:default": [],
612+
}),
610613
includes = [
611614
"include",
612615
"src",
@@ -662,9 +665,6 @@ cc_library(
662665
"@protobuf",
663666
"@yaml-cpp",
664667
] + select({
665-
":use_hwloc": ["@hwloc"],
666-
"//conditions:default": [],
667-
}) + select({
668668
":use_io_uring": ["@liburing"],
669669
"//conditions:default": [],
670670
}),

0 commit comments

Comments
 (0)