Skip to content

Commit

Permalink
cmake: Don't emit message when searching for libarchive
Browse files Browse the repository at this point in the history
Existence of libarchive does not change behavior because it's only used
to work around a bug in dpdk.

Fixes d6dd763

Closes #2500
  • Loading branch information
p12tic authored and xemul committed Oct 18, 2024
1 parent 360fa1d commit 788c8d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/Finddpdk.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ endif ()
# Unfortunately DPDK also has a bug in its .pc file generation and will not include libarchive
# dependency under any circumstance. Accordingly, the dependency is added explicitly if libarchive
# exists.
pkg_check_modules(libarchive_PC libarchive)
pkg_check_modules (libarchive_PC QUIET libarchive)
list(APPEND dpdk_dependencies ${libarchive_PC_LIBRARIES})

if (dpdk_FOUND AND NOT (TARGET dpdk))
Expand Down

0 comments on commit 788c8d1

Please sign in to comment.