File: cwcp.preinst

package info (click to toggle)
unixcw 3.0.2-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,056 kB
  • sloc: ansic: 7,579; cpp: 1,477; sh: 549; makefile: 416; awk: 224
file content (17 lines) | stat: -rw-r--r-- 507 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/cwcp

# 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