~ubuntu-branches/ubuntu/natty/libxslt/natty

« back to all changes in this revision

Viewing changes to debian/python-libxslt1-dbg.preinst

  • Committer: Bazaar Package Importer
  • Author(s): Mike Hommey
  • Date: 2010-08-26 11:42:01 UTC
  • mfrom: (9.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100826114201-ynre4qhwvwzvikax
Tags: 1.1.26-6
debian/python-libxslt1-dbg.preinst: Add preinst snippet to remove
/usr/share/doc/python-libxslt1-dbg symlink on Ubuntu. This is an
Ubuntu-only fix, but allows Ubuntu to just use the Debian package
without further modifications.
Closes: #587910

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
[ "$1" = "upgrade" ] &&
 
6
[ -L /usr/share/doc/python-libxslt1-dbg ] &&
 
7
rm -f /usr/share/doc/python-libxslt1-dbg
 
8
 
 
9
#DEBHELPER#
 
10
 
 
11
exit 0