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
482 B
27 lines
482 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/e2fslibs-dev |
|
SYMLINK_TARGET=e2fslibs |
|
|
|
if [ "$1" = "install" -o "$1" = "upgrade" ] && |
|
[ -n "$2" ] && [ -h "$SYMLINK" ] && |
|
symlink_match "$SYMLINK" "$SYMLINK_TARGET" |
|
then |
|
mv -f "$SYMLINK" "${SYMLINK}.dpkg-backup" |
|
fi |
|
|
|
#DEBHELPER# |
|
|
|
exit 0
|
|
|