summaryrefslogtreecommitdiffstats
path: root/debian/libtirpc3t64.preinst.in
blob: 4c6a96bcf6ce45a1f9f58c19bf196d00bd7f495a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

set -e

# per Helmut, these can't be safely removed again (in package postinst)
# until forky
case $1 in
	install)
		for file in libtirpc.so.3 libtirpc.so.3.0.0; do
			dpkg-divert --package libtirpc3t64 --no-rename \
				--divert \
				/lib/#DEB_HOST_MULTIARCH#/$file.usr-is-merged \
				/lib/#DEB_HOST_MULTIARCH#/$file
                done
                ;;
esac

#DEBHELPER#