mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-23 14:03:33 -04:00
Key features: * Up to twice as fast and up to 10% better compression * New dwarfsextract tool Allow extracting dwarfs images as archives. * Bugfixes. Fixed bug with revdep-rebuild. Package now proper use system libraries. Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Denis Reva <denis7774@gmail.com>
21 lines
619 B
Diff
21 lines
619 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 18fa5cd..36fc0b3 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -258,8 +258,6 @@ add_executable(dwarfsextract src/dwarfsextract.cpp)
|
|
|
|
list(APPEND BINARY_TARGETS mkdwarfs dwarfsck dwarfsbench dwarfsextract)
|
|
|
|
-target_link_libraries(dwarfsextract PkgConfig::LIBARCHIVE)
|
|
-
|
|
if(FUSE3_FOUND)
|
|
add_executable(dwarfs-bin src/dwarfs.cpp)
|
|
target_compile_definitions(dwarfs-bin PRIVATE _FILE_OFFSET_BITS=64
|
|
@@ -482,6 +480,7 @@ target_link_libraries(
|
|
thrift_light
|
|
folly
|
|
${Boost_LIBRARIES}
|
|
+ PkgConfig::LIBARCHIVE
|
|
PkgConfig::LIBLZ4
|
|
PkgConfig::LIBLZMA)
|