~ubuntu-branches/ubuntu/hardy/zlib/hardy

« back to all changes in this revision

Viewing changes to debian/zlib1-altdev.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant
  • Date: 2004-12-10 13:00:13 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041210130013-hxwqux7r0avd4gta
Tags: 1:1.2.2-4ubuntu1
Resynchronise with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh -e
2
2
 
3
 
if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/doc/zlib1-altdev ]; then
 
3
if ( [ "$1" = "upgrade" ] || [ "$1" = "remove" ] ) && [ -L /usr/doc/zlib1-altdev ]; then
4
4
        rm -f /usr/doc/zlib1-altdev
5
5
fi
6
6