]> git.llucax.com Git - software/mutt-debian.git/blob - debian/mutt-patched.preinst
Merge commit 'upstream/1.5.20'
[software/mutt-debian.git] / debian / mutt-patched.preinst
1 #!/bin/sh -e
2
3 # Divert mutt to mutt.org so the binary from mutt-patched can replace it.
4 # We do not need to divert the debugging symbols in the mutt-dbg package
5 # as the debugging link in there points to the correct file in any case.
6
7 if [ "$1" = install ] || [ "$1" = upgrade ] ; then
8         dpkg-divert --add --package mutt-patched --rename \
9                 --divert /usr/bin/mutt.org /usr/bin/mutt
10 fi
11
12 #DEBHELPER#
13
14 exit 0