This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=6a8b06f42c609968194e1bf8a5677f8ad3da6c84 commit 6a8b06f42c609968194e1bf8a5677f8ad3da6c84 Author: Guillem Jover <[email protected]> AuthorDate: Wed Dec 15 03:46:08 2021 +0100 debian: Update bug-script to clarify usrmerge systems are unsupported The merged-usr-via-aliased-dirs, have never been and are not supported by dpkg, and should be considered broken systems. Make this clear on the message, and add a pointer to the FAQ describing the issue. --- debian/bug-script | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/bug-script b/debian/bug-script index 5e1707082..9d2f7afce 100644 --- a/debian/bug-script +++ b/debian/bug-script @@ -3,7 +3,8 @@ for d in /bin /sbin /lib /lib32 /libo32 /libx32 /lib64; do linkname="$(readlink $d)" if [ "$linkname" = "usr$d" ] || [ "$linkname" = "/usr$d" ]; then - echo "System tainted due to merged-usr-via-aliased-dirs." >&3 + echo "System unsupported due to merged-usr-via-aliased-dirs." >&3 + echo "See <https://wiki.debian.org/Teams/Dpkg/FAQ#broken-usrmerge>." >&3 break fi done -- Dpkg.Org's dpkg

