From: Yu Watanabe Date: Thu, 4 Jun 2026 19:07:45 +0000 (+0900) Subject: mkosi/opensuse: do not try to package non-existent symlink to systemd-udevd-control... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e54afe8da43a2204da23051c967d8f5526dc4cc;p=thirdparty%2Fsystemd.git mkosi/opensuse: do not try to package non-existent symlink to systemd-udevd-control.socket --- diff --git a/mkosi/mkosi.images/build/mkosi.conf.d/opensuse/mkosi.build.chroot b/mkosi/mkosi.images/build/mkosi.conf.d/opensuse/mkosi.build.chroot index 14a69456cd1..f3e8841e540 100755 --- a/mkosi/mkosi.images/build/mkosi.conf.d/opensuse/mkosi.build.chroot +++ b/mkosi/mkosi.images/build/mkosi.conf.d/opensuse/mkosi.build.chroot @@ -19,9 +19,12 @@ TS="${SOURCE_DATE_EPOCH:-$(date +%s)}" # disable manpage compression as the files cannot be found. Fix the issue by removing the compression # extension. # TODO: remove autovt@ removal when the upstream spec is updated +# TODO: remove systemd-udevd-control.socket removal when the upstream spec is updated while read -r filelist; do sed -E \ -e '/autovt@/d' \ + -e '/sockets\.target\.wants\/systemd-udevd-control\.socket/d' \ + -e '/systemd-udevd-control\.socket\.8/d' \ -e 's/\.gz$//' \ "$filelist" >"/tmp/$(basename "$filelist")" mount --bind "/tmp/$(basename "$filelist")" "$filelist"