File: xcwcp.preinst

package info (click to toggle)
unixcw 3.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,564 kB
  • sloc: ansic: 20,921; sh: 4,365; cpp: 1,629; awk: 293; makefile: 269
file content (17 lines) | stat: -rw-r--r-- 508 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

#DEBHELPER#

set -e

DOCLINK=/usr/share/doc/xcwcp

# Previously in version 2.3-13 $DOCLINK was a symlink to /usr/share/doc/unixcw.
# Removing this symlink must be handled explicitly so that
# the new version of the package can be placed into a real directory
# there otherwise the symlink will be preserved and the doc files
# will be missing after the install.  This is required to upgrade
# from Squeeze to Wheezy.  This may be removed after Wheezy.
if [ -h $DOCLINK ]; then
  rm -f $DOCLINK
fi