~mingw-w64/pkg-w64/common

« back to all changes in this revision

Viewing changes to debian/mingw-w64-common.postrm

  • Committer: Dmitrijs Ledkovs
  • Date: 2010-12-12 03:28:57 UTC
  • Revision ID: dmitrij.ledkov@ubuntu.com-20101212032857-nqb6xp017lxs9oky
Initial Release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# postrm script for mingw-w64-common
 
3
#
 
4
 
 
5
set -e
 
6
 
 
7
if [ remove = "$1" -o abort-install = "$1" -o disappear = "$1" ]; then
 
8
   dpkg-divert --package mingw-w64-common --remove --rename \
 
9
   --divert /usr/share/dpkg/triplettable.real /usr/share/dpkg/triplettable
 
10
   dpkg-divert --package mingw-w64-common --remove --rename \
 
11
   --divert /usr/share/dpkg/ostable.real /usr/share/dpkg/ostable
 
12
fi
 
13
 
 
14
#DEBHELPER#
 
15
 
 
16
exit 0