mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-24 02:25:03 +08:00
31ee367e97
Using symlinks to save space on duplicate copies of the /usr/share/doc/*/changelog.Debian.gz is a bit of a mess, since when the foo-dev package is removed, the files in /usr/share/doc/libfoo/* get removed, which means the copyright file gets removed. So stop doing this altogether, and set up maintainer scripts to clean up the mess so that the symlinks are removed when the packages get upgraded. Addresses-Debian-Bug: #905195 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
27 lines
460 B
Bash
27 lines
460 B
Bash
#!/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" = "configure" ] && [ -h "${SYMLINK}.dpkg-backup" ] &&
|
|
symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET"
|
|
then
|
|
rm -f "${SYMLINK}.dpkg-backup"
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|