mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-28 12:34:13 +08:00
7dc67c0ad5
(From NMU'ed change) Addresses-Debian-Bug: #698879 Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
20 lines
270 B
Bash
20 lines
270 B
Bash
#!/bin/sh
|
|
|
|
# Abort on error.
|
|
set -e
|
|
|
|
PKG=e2fsprogs
|
|
DOCLNK=/usr/share/doc/$PKG
|
|
if test "$1" = upgrade \
|
|
-a -L $DOCLNK
|
|
then
|
|
rm $DOCLNK
|
|
fi
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
# generated by other debhelper scripts.
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|