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=c32dbb8fd5b9eabdb7008d67a9580b1617a60f9d commit c32dbb8fd5b9eabdb7008d67a9580b1617a60f9d (HEAD -> main) Author: Guillem Jover <[email protected]> AuthorDate: Thu Mar 24 19:34:03 2022 +0100 debian: Sync original bug-script merged-usr warning with postinst updates This was the original notice/warning emitted for bugs filed by reportbug against dpkg. Which was subsequently modified and taken as is for the dpkg postinst one. Sync it back so both match. --- debian/bug-script | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/bug-script b/debian/bug-script index 9d2f7afce..a46342a99 100644 --- a/debian/bug-script +++ b/debian/bug-script @@ -3,7 +3,9 @@ for d in /bin /sbin /lib /lib32 /libo32 /libx32 /lib64; do linkname="$(readlink $d)" if [ "$linkname" = "usr$d" ] || [ "$linkname" = "/usr$d" ]; then - echo "System unsupported due to merged-usr-via-aliased-dirs." >&3 + echo "This system uses merged-usr-via-aliased-dirs, going behind dpkg's" >&3 + echo "back, breaking its core assumptions. This can cause silent file" >&3 + echo "overwrites and disappearances, and its general tools misbehavior." >&3 echo "See <https://wiki.debian.org/Teams/Dpkg/FAQ#broken-usrmerge>." >&3 break fi -- Dpkg.Org's dpkg

