~ubuntu-branches/ubuntu/gutsy/libcorelinux/gutsy

« back to all changes in this revision

Viewing changes to debian/libcorelinux-doc.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2001-12-29 17:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20011229174334-ejlsuilsiro5vmzr
Tags: 0.4.32-4
* fix config.{guess,sub} out of date on hppa and s390 (closes: #124296,#121830)
* try to be more descriptive in the description of the package  (closes: #115758)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# postinst script for kdebase
 
3
#
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -e
 
7
 
 
8
case "$1" in
 
9
    configure)
 
10
      ln -s /usr/share/doc/libcorelinux-doc /usr/doc/libcorelinux-doc
 
11
    ;;
 
12
    abort-upgrade|abort-remove|abort-deconfigure)
 
13
 
 
14
    ;;
 
15
 
 
16
    *)
 
17
        echo "postinst called with unknown argument \`$1'" >&2
 
18
        exit 0
 
19
    ;;
 
20
esac
 
21
 
 
22
# dh_installdeb will replace this with shell code automatically
 
23
# generated by other debhelper scripts.
 
24
 
 
25
#DEBHELPER#
 
26
 
 
27
exit 0