File: binutils-multiarch.postrm

package info (click to toggle)
binutils 2.15-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 86,288 kB
  • ctags: 93,872
  • sloc: ansic: 672,886; asm: 243,857; exp: 44,950; makefile: 29,286; sh: 17,224; lisp: 7,387; yacc: 5,855; lex: 1,520; perl: 1,383; cpp: 1,339; sed: 522; pascal: 175; awk: 26
file content (31 lines) | stat: -rw-r--r-- 694 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#! /bin/sh

set -e

if [ "$1" = "remove" -o "$1" = "abort-install" ]; then

	for f in size objdump ar strings ranlib objcopy addr2line \
                 readelf nm strip gprof; do
		dpkg-divert --package binutils-multiarch \
			--remove --rename \
			--divert /usr/bin/$f.single /usr/bin/$f
	done

	for l in bfd opcodes; do
		dpkg-divert --package binutils-multiarch \
			--remove --rename \
			--divert /usr/lib/lib$l-single.a /usr/lib/lib$l.a
	done

fi

if [ -e /usr/lib/libbfd-*-multiarch.so.0 ]; then
	rm -f /usr/lib/libbfd-*-multiarch.so.0;
fi
if [ -e /usr/lib/libopcodes-*-multiarch.so.0 ]; then
	rm -f /usr/lib/libopcodes-*-multiarch.so.0;
fi

if [ "$1" = "remove" ]; then
	ldconfig
fi