diff options
Diffstat (limited to 'debian/libxml2-utils.preinst')
-rw-r--r-- | debian/libxml2-utils.preinst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/libxml2-utils.preinst b/debian/libxml2-utils.preinst new file mode 100644 index 0000000..8c07be8 --- /dev/null +++ b/debian/libxml2-utils.preinst @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +[ "$1" = "upgrade" ] && +[ -L /usr/share/doc/libxml2-utils ] && +rm -f /usr/share/doc/libxml2-utils + +#DEBHELPER# + +exit 0 |