From c4fd3043ff7868d34251aed45a3d4dc1259c0b0f Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Sat, 24 Jan 2026 13:24:53 +0000 Subject: [PATCH] mkosi: workaround autovt removal in SUSE spec Follow-up for 072e72424b2e6da1c96489ef6996f49fabd46474 --- .../mkosi.images/build/mkosi.conf.d/opensuse/mkosi.build.chroot | 2 ++ 1 file changed, 2 insertions(+) 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 5a05a347176..abc6829b40b 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 @@ -18,8 +18,10 @@ TS="${SOURCE_DATE_EPOCH:-$(date +%s)}" # The openSUSE filelists hardcode the manpage compression extension. This causes rpmbuild errors since we # 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 while read -r filelist; do sed -E \ + -e '/autovt@/d' \ -e 's/\.gz$//' \ "$filelist" >"/tmp/$(basename "$filelist")" mount --bind "/tmp/$(basename "$filelist")" "$filelist" -- 2.47.3