~ubuntu-branches/ubuntu/hoary/binutils/hoary

« back to all changes in this revision

Viewing changes to debian/packages.d/binutils.in

  • Committer: Bazaar Package Importer
  • Author(s): Christopher C. Chimelis
  • Date: 2002-04-18 13:03:49 UTC
  • Revision ID: james.westby@ubuntu.com-20020418130349-pr9a1j3znz4gh3j6
Tags: 2.12.90.0.1-4
* Added patch from Gerhardt Tonn
  to fix s390 merge problem (closes: Bug#143187)
* Corrected DOW of my last changelog entry :-P

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%postinst%
 
2
#! /bin/sh
 
3
 
 
4
set -e
 
5
 
 
6
. /usr/share/debconf/confmodule
 
7
 
 
8
if [ "$1" = "configure" ]; then
 
9
        ldconfig
 
10
fi
 
11
 
 
12
#DEBHELPER#
 
13
%prerm%
 
14
#! /bin/sh
 
15
 
 
16
set -e
 
17
 
 
18
#DEBHELPER#
 
19
%postrm%
 
20
#! /bin/sh
 
21
 
 
22
set -e
 
23
 
 
24
if [ "$1" = "remove" ]; then
 
25
        ldconfig
 
26
fi
 
27
 
 
28
#DEBHELPER#