You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
452 B
27 lines
452 B
#!/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
|