summaryrefslogtreecommitdiff
path: root/debian/postinst
diff options
context:
space:
mode:
authorLibravatar Helmut Grohne <[email protected]>2024-06-06 00:30:00 +0200
committerLibravatar Santiago Vila <[email protected]>2024-06-06 17:20:21 +0200
commit0f4e218448a573886b560d59086457670956a41b (patch)
tree9136d9f33e276cc97e214313fa9c96e598e2b6be /debian/postinst
parentd888609a4138041893295f76938b7596b8e85062 (diff)
downloadbase-files-0f4e218448a573886b560d59086457670956a41b.tar.gz
base-files-0f4e218448a573886b560d59086457670956a41b.zip
DEP17: Install /usr-merge aliasing symlinks. Closes: #1064459.
Diffstat (limited to '')
-rw-r--r--debian/postinst22
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/postinst b/debian/postinst
index 2708d17..e1ad3a4 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -108,4 +108,26 @@ if [ "$1" = "configure" ] && [ "$2" != "" ]; then
fi
fi
+rtlddir="#USR_MERGE_RTLDLIB#"
+if [ "$1" = "configure" ] && [ -n "$rtlddir" ]; then
+ # Remove temporary DEP17 M4 diversion added by glibc.
+ dpkg-divert --quiet --package base-files --remove --no-rename --divert "/.$rtlddir.usr-is-merged" "/$rtlddir"
+fi
+
+if [ "$1" = "configure" ] || [ "$1" = "triggered" ]; then
+ for d in #USR_MERGE_MULTILIB#; do
+ if [ -d "$DPKG_ROOT/usr/$d" ]; then
+ if [ -L "$DPKG_ROOT/$d" ]; then
+ :
+ elif [ -d "$DPKG_ROOT/$d" ]; then
+ echo "Warning: /$d is not a symlink, but should be." 1>&2
+ else
+ ln -s "usr/$d" "$DPKG_ROOT/$d"
+ fi
+ elif [ -L "$DPKG_ROOT/$d" ]; then
+ rm "$DPKG_ROOT/$d"
+ fi
+ done
+fi
+
#DEBHELPER#