File: docbook-xsl-doc-html.preinst

package info (click to toggle)
docbook-xsl-doc 1.78.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,848 kB
  • sloc: makefile: 10; sh: 5
file content (16 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/sh
# preinst script for docbook-xsl-doc-html
#
# see: dh_installdeb(1)

set -e

# If the symlink of docbook-xsl-doc-html (<< 1.74) exists,
# then remove it, so the package can install it's directory.
if [ -h /usr/share/doc/docbook-xsl-doc-html/doc ]; then
	rm -f /usr/share/doc/docbook-xsl-doc-html/doc
fi

#DEBHELPER#

exit 0