blob: bf49c9d9d1b4131d570ba1fb543431336ee97f8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
# Abort on error.
set -e
symlink_match()
{
local SYMLINK="$1"
local SYMLINK_TARGET="$2"
[ "$(readlink "$SYMLINK")" = "$SYMLINK_TARGET" ] || \
[ "$(readlink -f "$SYMLINK")" = "$SYMLINK_TARGET" ]
}
SYMLINK=/usr/share/doc/ss-dev
SYMLINK_TARGET=libss2
if [ "$1" = "configure" ] && [ -h "${SYMLINK}.dpkg-backup" ] &&
symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET"
then
rm -f "${SYMLINK}.dpkg-backup"
fi
#DEBHELPER#
exit 0
|