~ubuntu-branches/ubuntu/warty/docbook-html-forms/warty

« back to all changes in this revision

Viewing changes to debian/docbook-html-forms.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Mark Johnson
  • Date: 2004-01-30 21:27:04 UTC
  • mfrom: (0.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040130212704-tbl6kc33lzm0f6ni
Tags: 1.1.0-3
Fixed compatibility symlinks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# postinst script for docbook-html-forms
 
3
# Maintainer: Mark Johnson <mrj@debian.org>
 
4
 
 
5
set -e
 
6
 
 
7
 
 
8
# do symlinks manually, til I figure out the problem
 
9
if [ "$1" = configure ]; then
 
10
    rm -rf /usr/share/sgml/docbook/custom/html-forms
 
11
    cd /usr/share/sgml/docbook/custom
 
12
    ln -s ../../../xml/docbook/custom/html-forms html-forms
 
13
fi
 
14
 
 
15
#DEBHELPER#
 
16
 
 
17
exit 0
 
18
 
 
19