Our zstd package is a lot more fine granular only selecting the the zstd package does nothing. Instead we need to tell ptxdist that the zstdlib must be installed too else systemd fails with: 'error while loading shared libraries: libzstd.so.1: cannot open shared object file: No such file or directory'
Signed-off-by: Marco Felsch <[email protected]> --- rules/systemd.in | 1 + 1 file changed, 1 insertion(+) diff --git a/rules/systemd.in b/rules/systemd.in index bd848b372..1206a30de 100644 --- a/rules/systemd.in +++ b/rules/systemd.in @@ -22,6 +22,7 @@ menuconfig SYSTEMD select XZ if SYSTEMD_XZ select LZ4 if SYSTEMD_LZ4 select ZSTD if SYSTEMD_ZSTD + select ZSTD_LIBZSTD if SYSTEMD_ZSTD select LIBMICROHTTPD if SYSTEMD_MICROHTTPD select LIBSECCOMP if SYSTEMD_SECCOMP select LIBSELINUX if GLOBAL_SELINUX -- 2.20.1 _______________________________________________ ptxdist mailing list [email protected] To unsubscribe, send a mail with subject "unsubscribe" to [email protected]
