[go: up one dir, main page]

File: tk8.3.postrm

package info (click to toggle)
tk8.3 8.3.3-8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 12,212 kB
  • ctags: 12,433
  • sloc: ansic: 120,657; tcl: 12,784; makefile: 1,259; sh: 1,057
file content (14 lines) | stat: -rw-r--r-- 180 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

if [ "$1" = "remove" ]; then
	if [ -d /usr/share/doc/tk8.3/examples ]; then
		# brokenness
		rm -rf /usr/share/doc/tk8.3/examples
	fi

	ldconfig
fi

#DEBHELPER#