Package: base-files Version: 13.4 X-Debbugs-CC: hel...@subdivi.de Hi,
debian/preinst gained a check for the /lib* symlinks. I think a copy-paste error slipped in. Please consider the patch below. Chris --- debian/preinst~ 2024-08-03 17:27:23.517818410 +0200 +++ debian/preinst 2024-08-03 17:27:30.797464260 +0200 @@ -3,7 +3,7 @@ if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then msg= - for d in bin lib lib32 lib64 libo32 lib64 sbin; do + for d in bin lib lib32 lib64 libo32 libx32 sbin; do if [ -L "$DPKG_ROOT/$d" ]; then if [ "$(readlink "$DPKG_ROOT/$d")" != "usr/$d" ]; then msg="/$d is a symbolic link and not pointing at usr/$d exactly"