]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: fix HAVE_LIBARCHIVE_* conditions
authorAntonio Alvarez Feijoo <antonio.feijoo@suse.com>
Thu, 16 Oct 2025 09:10:04 +0000 (11:10 +0200)
committerLuca Boccassi <luca.boccassi@gmail.com>
Thu, 16 Oct 2025 10:48:53 +0000 (11:48 +0100)
Follow-up for a7c8f92d1f937113a279adbe62399f6f0773473f

meson.build

index 2cca4bb43a9314060945274a93ae16ebfd9b910d..d95dce86d58ac4cffa0501beebf61d7e52d63e27 100644 (file)
@@ -1439,9 +1439,9 @@ libarchive = dependency('libarchive',
                         required : get_option('libarchive'))
 conf.set10('HAVE_LIBARCHIVE', libarchive.found())
 conf.set10('HAVE_LIBARCHIVE_UID_IS_SET',
-           libblkid.found() and cc.has_function('archive_entry_uid_is_set', dependencies : libarchive))
+           libarchive.found() and cc.has_function('archive_entry_uid_is_set', dependencies : libarchive))
 conf.set10('HAVE_LIBARCHIVE_HARDLINK_IS_SET',
-           libblkid.found() and cc.has_function('archive_entry_hardlink_is_set', dependencies : libarchive))
+           libarchive.found() and cc.has_function('archive_entry_hardlink_is_set', dependencies : libarchive))
 
 libxkbcommon = dependency('xkbcommon',
                           version : '>= 0.3.0',